aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index de0ef9078cf..cf3d3bd258a 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -1731,7 +1731,7 @@ skip_syntaxes (forwardp, string, lim)
1731 if (XINT (lim) < BEGV) 1731 if (XINT (lim) < BEGV)
1732 XSETFASTINT (lim, BEGV); 1732 XSETFASTINT (lim, BEGV);
1733 1733
1734 if (forward ? PT >= XFASTINT (lim) : PT <= XFASTINT (lim)) 1734 if (forwardp ? (PT >= XFASTINT (lim)) : (PT <= XFASTINT (lim)))
1735 return 0; 1735 return 0;
1736 1736
1737 multibyte = (!NILP (current_buffer->enable_multibyte_characters) 1737 multibyte = (!NILP (current_buffer->enable_multibyte_characters)