summaryrefslogtreecommitdiff
path: root/src/syntax.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-12-23 15:06:13 +0000
committerRichard M. Stallman <rms@gnu.org>1995-12-23 15:06:13 +0000
commit55862685fc1b0bb1ba5b06d4b8bad357d5d0377a (patch)
tree73e64267c3c4978794ff4bb5cdc2dd30b34d3b8b /src/syntax.h
parentd3f46cffef9cc839da1640194e5e536cfb3e7553 (diff)
downloademacs-55862685fc1b0bb1ba5b06d4b8bad357d5d0377a.tar.gz
(SYNTAX_ENTRY): Add cast in call to syntax_parent_lookup.
Diffstat (limited to 'src/syntax.h')
-rw-r--r--src/syntax.h3
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) \