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
commit08f506747625a13f78de16c4541146f89a3b3287 (patch)
tree4138ae5e3c0936b1e8994365947285586c979265 /src/syntax.h
parent41b8129915a2f276916512dfa02c7c1879e95586 (diff)
downloademacs-08f506747625a13f78de16c4541146f89a3b3287.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) \