# HG changeset patch # User Richard M. Stallman # Date 873766088 0 # Node ID 2e8a94028b7d62d34954a5dc19c7df88851679d8 # Parent cdfaf8ce520845e63385b28770057bdab90ea51a (UPDATE_SYNTAX_TABLE_FORWARD): Add missing fourth argument of update_syntax_table. (UPDATE_SYNTAX_TABLE_BACKWARD): Likewise. (UPDATE_SYNTAX_TABLE): Likewise. diff -r cdfaf8ce5208 -r 2e8a94028b7d src/syntax.h --- a/src/syntax.h Tue Sep 09 00:47:40 1997 +0000 +++ b/src/syntax.h Tue Sep 09 00:48:08 1997 +0000 @@ -200,22 +200,22 @@ #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