Enclose macro argument

Also enclosing is unnecessary in declaration as in
    int (VAR);
This commit is contained in:
Christian Göttsche 2021-05-10 17:30:55 +02:00 committed by BenBE
parent d918cd9f2a
commit d9c95369bc
1 changed files with 7 additions and 7 deletions

View File

@ -15,13 +15,13 @@ in the source distribution for its full text.
#define RichString_size(this) ((this)->chlen)
#define RichString_sizeVal(this) ((this).chlen)
#define RichString_begin(this) RichString (this); RichString_beginAllocated(this)
#define RichString_beginAllocated(this) \
do { \
(this).chlen = 0, \
(this).chptr = (this).chstr; \
RichString_setChar(&this, 0, 0); \
(this).highlightAttr = 0; \
#define RichString_begin(this) RichString this; RichString_beginAllocated(this)
#define RichString_beginAllocated(this) \
do { \
(this).chlen = 0, \
(this).chptr = (this).chstr; \
RichString_setChar(&(this), 0, 0); \
(this).highlightAttr = 0; \
} while(0)
#ifdef HAVE_LIBNCURSESW