1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00

(Fset_syntax_table): Add XFASTINT.

This commit is contained in:
Richard M. Stallman 1993-06-12 16:57:29 +00:00
parent e09f935147
commit f110a66478

View file

@ -173,7 +173,8 @@ One argument, a syntax table.")
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;
}