Re: [RP] [PATCH 3/3] Add a test program to exercise concat_width()

2017-08-27 Thread Will Storey
On Sun 2017-08-27 19:07:53 -0700, Spiros Bousbouras wrote: > > > +void __test_concat_width(void) > > Identifiers starting with __ are reserved for the C standard. A name like > rtp_test_concat_width seems fine to me. Interesting. I'll have to look that up! I'll send in an updated patch. Tha

Re: [RP] [PATCH 3/3] Add a test program to exercise concat_width()

2017-08-27 Thread Spiros Bousbouras
On Sunday 2017-08-27 Will Storey wrote : > +void __test_concat_width(void) Identifiers starting with __ are reserved for the C standard. A name like rtp_test_concat_width seems fine to me. ___ Ratpoison-devel mailing list Ratpoison-devel@nongnu.org

[RP] [PATCH 3/3] Add a test program to exercise concat_width()

2017-08-27 Thread Will Storey
This program can be run using `make check`. In order to do this, you will need to run `autogen.sh` again. --- .gitignore | 2 ++ src/Makefile.am | 11 +++ src/format.c| 92 + 3 files changed, 105 insertions(+) diff --git a/.git