# HG changeset patch # User Richard M. Stallman # Date 760127052 0 # Node ID 45d91f2b381095b0fff8035616cb124d037bb76e # Parent 02a4aeb69cae3ac4c31be48c8541c4f21ca1cdb0 (SYNTAX_MATCH, SYNTAX): Fix non-GNUC definitions. diff -r 02a4aeb69cae -r 45d91f2b3810 src/syntax.h --- a/src/syntax.h Tue Feb 01 18:21:00 1994 +0000 +++ b/src/syntax.h Tue Feb 01 18:24:12 1994 +0000 @@ -64,7 +64,7 @@ #define SYNTAX(c) \ (RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \ ? RAW_SYNTAX (Vstandard_syntax_table, c) \ - : RAW_SYNTAX (c)) + : RAW_SYNTAX (current_buffer->syntax_table, c)) #endif /* The next 8 bits of the number is a character, @@ -88,7 +88,7 @@ #define SYNTAX_MATCH(c) \ (RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \ ? RAW_SYNTAX_MATCH (Vstandard_syntax_table, c) \ - : RAW_SYNTAX_MATCH (c)) + : RAW_SYNTAX_MATCH (current_buffer->syntax_table, c)) #endif /* Then there are six single-bit flags that have the following meanings: