diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-15 19:00:36 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-15 19:00:36 +0000 |
commit | 48fe8caca1c7a982e93d08b12a4f75c7ea0f2c19 (patch) | |
tree | d11c1b55d481921d442b41e1bd3b80279a3e590a /src/syntax.h | |
parent | 515b04d08c5064d710b753d74b0e2eef80992c3a (diff) | |
download | emacs-48fe8caca1c7a982e93d08b12a4f75c7ea0f2c19.tar.gz emacs-48fe8caca1c7a982e93d08b12a4f75c7ea0f2c19.tar.bz2 emacs-48fe8caca1c7a982e93d08b12a4f75c7ea0f2c19.zip |
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix previous change.
Diffstat (limited to 'src/syntax.h')
-rw-r--r-- | src/syntax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.h b/src/syntax.h index 0e5e298b64a..29ce1c27b33 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -247,7 +247,7 @@ extern char syntax_code_spec[16]; { \ gl_state.b_property = BEGV - 1; \ gl_state.e_property = ZV; \ - gl_state.offset = BEGV; \ + gl_state.offset = BEGV - 1; \ } \ else if (EQ (object, Qt)) \ { \ |