summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-09 00:48:08 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-09 00:48:08 +0000
commit844fa26a99afd589dc5ad844d89a46ba7b22efcf (patch)
treeb9cf71428e605b3d6337f66130288a9ff9125e32
parent9e96501f1c13e447d7d36a0ad63d34112a169e77 (diff)
downloademacs-844fa26a99afd589dc5ad844d89a46ba7b22efcf.tar.gz
(UPDATE_SYNTAX_TABLE_FORWARD): Add missing fourth
argument of update_syntax_table. (UPDATE_SYNTAX_TABLE_BACKWARD): Likewise. (UPDATE_SYNTAX_TABLE): Likewise.
-rw-r--r--src/syntax.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/syntax.h b/src/syntax.h
index 29ce1c27b33..0fa3994a75d 100644
--- a/src/syntax.h
+++ b/src/syntax.h
@@ -200,22 +200,22 @@ extern char syntax_code_spec[16];
#define UPDATE_SYNTAX_TABLE_FORWARD(pos) \
((pos) >= gl_state.e_property - gl_state.offset \
- ? (update_syntax_table ((pos) + gl_state.offset, 1, 0), 1) : 0)
+ ? (update_syntax_table ((pos) + gl_state.offset, 1, 0, Qnil), 1) : 0)
/* Make syntax table state (gl_state) good for POS, assuming it is
currently good for a position after POS. */
#define UPDATE_SYNTAX_TABLE_BACKWARD(pos) \
((pos) <= gl_state.b_property - gl_state.offset \
- ? (update_syntax_table ((pos) + gl_state.offset, -1, 0), 1) : 0)
+ ? (update_syntax_table ((pos) + gl_state.offset, -1, 0, Qnil), 1) : 0)
/* Make syntax table good for POS. */
#define UPDATE_SYNTAX_TABLE(pos) \
((pos) <= gl_state.b_property - gl_state.offset \
- ? (update_syntax_table ((pos) + gl_state.offset, -1, 0), 1) \
+ ? (update_syntax_table ((pos) + gl_state.offset, -1, 0, Qnil), 1) \
: ((pos) >= gl_state.e_property - gl_state.offset \
- ? (update_syntax_table ((pos) + gl_state.offset, 1, 0), 1) : 0))
+ ? (update_syntax_table ((pos) + gl_state.offset, 1, 0, Qnil), 1) : 0))
/* This macro should be called with FROM at the start of forward
search, or after the last position of the backward search. It