Mercurial > emacs
diff src/syntax.c @ 18738:bcc43754d3bc
(init_syntax_once): Convert Fmake_vector argument to Lisp_Integer.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 12 Jul 1997 06:38:27 +0000 |
| parents | 614b916ff5bf |
| children | 444939f3c18f |
line wrap: on
line diff
--- a/src/syntax.c Sat Jul 12 06:37:59 1997 +0000 +++ b/src/syntax.c Sat Jul 12 06:38:27 1997 +0000 @@ -2715,7 +2715,7 @@ Qchar_table_extra_slots = intern ("char-table-extra-slots"); /* Create objects which can be shared among syntax tables. */ - Vsyntax_code_object = Fmake_vector (13, Qnil); + Vsyntax_code_object = Fmake_vector (make_number (13), Qnil); for (i = 0; i < XVECTOR (Vsyntax_code_object)->size; i++) XVECTOR (Vsyntax_code_object)->contents[i] = Fcons (make_number (i), Qnil);
