Mercurial > emacs
changeset 3684:2be7629a9e17
(Fset_syntax_table): Add XFASTINT.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 12 Jun 1993 16:57:29 +0000 |
parents | 568c8391744d |
children | 47d7fda8a609 |
files | src/syntax.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.c Sat Jun 12 16:52:03 1993 +0000 +++ b/src/syntax.c Sat Jun 12 16:57:29 1993 +0000 @@ -173,7 +173,8 @@ table = check_syntax_table (table); current_buffer->syntax_table = table; /* Indicate that this buffer now has a specified syntax table. */ - current_buffer->local_var_flags |= buffer_local_flags.syntax_table; + current_buffer->local_var_flags + |= XFASTINT (buffer_local_flags.syntax_table); return table; }