aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c
index ffe0ea5e0d9..fc8c666cec4 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -3771,11 +3771,11 @@ Each function is called with two arguments; POS and LIMIT.
3771POS and LIMIT are character positions in the current buffer. 3771POS and LIMIT are character positions in the current buffer.
3772 3772
3773If POS is less than LIMIT, POS is at the first character of a word, 3773If POS is less than LIMIT, POS is at the first character of a word,
3774and the return value of a function is a position after the last 3774and the return value of a function should be a position after the
3775character of that word. 3775last character of that word.
3776 3776
3777If POS is not less than LIMIT, POS is at the last character of a word, 3777If POS is not less than LIMIT, POS is at the last character of a word,
3778and the return value of a function is a position at the first 3778and the return value of a function should be a position at the first
3779character of that word. 3779character of that word.
3780 3780
3781In both cases, LIMIT bounds the search. */); 3781In both cases, LIMIT bounds the search. */);