From d9c95369bc51595b6edd4eb6050c47a9b1e7a8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Mon, 10 May 2021 17:30:55 +0200 Subject: Enclose macro argument Also enclosing is unnecessary in declaration as in int (VAR); --- RichString.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'RichString.h') diff --git a/RichString.h b/RichString.h index 76323e40..5c456d21 100644 --- a/RichString.h +++ b/RichString.h @@ -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 -- cgit v1.2.3