aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index 24574c5e5e8..4fbd80232c6 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -311,7 +311,7 @@ enum syntaxcode { Swhitespace = 0, Sword = 1, Ssymbol = 2 };
311# define RE_STRING_CHAR(p, s, multibyte) STRING_CHAR ((p), (s)) 311# define RE_STRING_CHAR(p, s, multibyte) STRING_CHAR ((p), (s))
312# define CHAR_STRING(c, s) (*(s) = (c), 1) 312# define CHAR_STRING(c, s) (*(s) = (c), 1)
313# define STRING_CHAR_AND_LENGTH(p, s, actual_len) ((actual_len) = 1, *(p)) 313# define STRING_CHAR_AND_LENGTH(p, s, actual_len) ((actual_len) = 1, *(p))
314# define RE_STRING_CHAR_AND_LENGTH(p, s, multibyte) STRING_CHAR_AND_LENGTH ((p), (s)) 314# define RE_STRING_CHAR_AND_LENGTH(p, s, len, multibyte) STRING_CHAR_AND_LENGTH ((p), (s), (len))
315# define RE_CHAR_TO_MULTIBYTE(c) (c) 315# define RE_CHAR_TO_MULTIBYTE(c) (c)
316# define RE_CHAR_TO_UNIBYTE(c) (c) 316# define RE_CHAR_TO_UNIBYTE(c) (c)
317# define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ 317# define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \