diff options
Diffstat (limited to 'Src/lex.c')
-rw-r--r-- | Src/lex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/lex.c b/Src/lex.c index 11404a646..cb76bc7ab 100644 --- a/Src/lex.c +++ b/Src/lex.c @@ -1140,7 +1140,8 @@ gettokstr(int c, int sub) skipparens(Inbrack, Outbrack, &t); } } - if (*t == '+') t++; + if (*t == '+') + t++; if (t == bptr) { e = hgetc(); if (e == '(' && incmdpos) { |