From: Richard M. Stallman Date: Wed, 4 Sep 1996 00:06:48 +0000 (+0000) Subject: (Fmake_byte_code): Call make_pure_vector using nargs. X-Git-Tag: emacs-20.1~3843 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a053ea9811b64c63fde8f98900f3aa13f68b659;p=emacs.git (Fmake_byte_code): Call make_pure_vector using nargs. --- diff --git a/src/alloc.c b/src/alloc.c index 4f66fbd4d35..a526739d0e7 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -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);