diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-12 06:38:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-12 06:38:27 +0000 |
commit | eff63d69ed1e85969091c5dce631542c7370eaee (patch) | |
tree | c7957391c097ed1a84d6fd84fed2fbb4ac902141 /src/syntax.c | |
parent | fab9017af6128a30b032498ddbf7de59428cf0dd (diff) | |
download | emacs-eff63d69ed1e85969091c5dce631542c7370eaee.tar.gz |
(init_syntax_once): Convert Fmake_vector argument to Lisp_Integer.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index f39b356d731..df89836d099 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -2715,7 +2715,7 @@ init_syntax_once () 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); |