summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--RichString.h14
1 files changed, 7 insertions, 7 deletions
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