1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-17 10:06:13 +00:00

(Fmake_byte_code): Call make_pure_vector using nargs.

This commit is contained in:
Richard M. Stallman 1996-09-04 00:06:48 +00:00
parent 01a4d290aa
commit 5a053ea981

View File

@ -824,7 +824,7 @@ significance.")
XSETFASTINT (len, nargs);
if (!NILP (Vpurify_flag))
val = make_pure_vector (XFASTINT (len));
val = make_pure_vector ((EMACS_INT) nargs);
else
val = Fmake_vector (len, Qnil);
p = XVECTOR (val);