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 a8b6a58a89b..d68628b181c 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -1907,7 +1907,7 @@ skip_syntaxes (forwardp, string, lim)
1907 XSETFASTINT (lim, BEGV); 1907 XSETFASTINT (lim, BEGV);
1908 1908
1909 if (forwardp ? (PT >= XFASTINT (lim)) : (PT <= XFASTINT (lim))) 1909 if (forwardp ? (PT >= XFASTINT (lim)) : (PT <= XFASTINT (lim)))
1910 return Qnil; 1910 return make_number (0);
1911 1911
1912 multibyte = (!NILP (current_buffer->enable_multibyte_characters) 1912 multibyte = (!NILP (current_buffer->enable_multibyte_characters)
1913 && (XINT (lim) - PT != CHAR_TO_BYTE (XINT (lim)) - PT_BYTE)); 1913 && (XINT (lim) - PT != CHAR_TO_BYTE (XINT (lim)) - PT_BYTE));