comparison src/syntax.c @ 3684:2be7629a9e17

(Fset_syntax_table): Add XFASTINT.
author Richard M. Stallman <rms@gnu.org>
date Sat, 12 Jun 1993 16:57:29 +0000
parents 87815c142cb2
children 408c7ee69be7
comparison
equal deleted inserted replaced
3683:568c8391744d 3684:2be7629a9e17
171 Lisp_Object table; 171 Lisp_Object table;
172 { 172 {
173 table = check_syntax_table (table); 173 table = check_syntax_table (table);
174 current_buffer->syntax_table = table; 174 current_buffer->syntax_table = table;
175 /* Indicate that this buffer now has a specified syntax table. */ 175 /* Indicate that this buffer now has a specified syntax table. */
176 current_buffer->local_var_flags |= buffer_local_flags.syntax_table; 176 current_buffer->local_var_flags
177 |= XFASTINT (buffer_local_flags.syntax_table);
177 return table; 178 return table;
178 } 179 }
179 180
180 /* Convert a letter which signifies a syntax code 181 /* Convert a letter which signifies a syntax code
181 into the code it signifies. 182 into the code it signifies.