diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-12-23 15:06:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-12-23 15:06:13 +0000 |
commit | 55862685fc1b0bb1ba5b06d4b8bad357d5d0377a (patch) | |
tree | 73e64267c3c4978794ff4bb5cdc2dd30b34d3b8b /src/syntax.h | |
parent | d3f46cffef9cc839da1640194e5e536cfb3e7553 (diff) | |
download | emacs-55862685fc1b0bb1ba5b06d4b8bad357d5d0377a.tar.gz |
(SYNTAX_ENTRY): Add cast in call to syntax_parent_lookup.
Diffstat (limited to 'src/syntax.h')
-rw-r--r-- | src/syntax.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syntax.h b/src/syntax.h index 07e0a6ca675..32847fc76ad 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -118,7 +118,8 @@ extern Lisp_Object syntax_parent_lookup (); = RAW_SYNTAX_ENTRY (current_buffer->syntax_table, (c)), \ (NILP (syntax_temp) \ ? (syntax_temp \ - = syntax_parent_lookup (current_buffer->syntax_table, (c))) \ + = syntax_parent_lookup (current_buffer->syntax_table, \ + (unsigned char) (c))) \ : syntax_temp)) #define SYNTAX(c) \ |