diff options
| author | Richard M. Stallman | 1995-12-23 15:06:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-12-23 15:06:13 +0000 |
| commit | 55862685fc1b0bb1ba5b06d4b8bad357d5d0377a (patch) | |
| tree | 73e64267c3c4978794ff4bb5cdc2dd30b34d3b8b /src | |
| parent | d3f46cffef9cc839da1640194e5e536cfb3e7553 (diff) | |
| download | emacs-55862685fc1b0bb1ba5b06d4b8bad357d5d0377a.tar.gz emacs-55862685fc1b0bb1ba5b06d4b8bad357d5d0377a.zip | |
(SYNTAX_ENTRY): Add cast in call to syntax_parent_lookup.
Diffstat (limited to 'src')
| -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 (); | |||
| 118 | = RAW_SYNTAX_ENTRY (current_buffer->syntax_table, (c)), \ | 118 | = RAW_SYNTAX_ENTRY (current_buffer->syntax_table, (c)), \ |
| 119 | (NILP (syntax_temp) \ | 119 | (NILP (syntax_temp) \ |
| 120 | ? (syntax_temp \ | 120 | ? (syntax_temp \ |
| 121 | = syntax_parent_lookup (current_buffer->syntax_table, (c))) \ | 121 | = syntax_parent_lookup (current_buffer->syntax_table, \ |
| 122 | (unsigned char) (c))) \ | ||
| 122 | : syntax_temp)) | 123 | : syntax_temp)) |
| 123 | 124 | ||
| 124 | #define SYNTAX(c) \ | 125 | #define SYNTAX(c) \ |