]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_interactively): Use & PSEUDOVECTOR_SIZE_MASK on `size' field of
authorRoland McGrath <roland@gnu.org>
Thu, 5 Jan 1995 07:06:19 +0000 (07:06 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 5 Jan 1995 07:06:19 +0000 (07:06 +0000)
compiled byte-code object.

src/callint.c

index d8e48752b7665b6c8313510773de4be321604756..f01db7c57552d6e79370a740c33224144990e122 100644 (file)
@@ -1,5 +1,5 @@
 /* Call a Lisp function interactively.
-   Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc.
+   Copyright (C) 1985, 1986, 1993, 1994, 1995 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -229,7 +229,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
     }
   else if (COMPILEDP (fun))
     {
-      if (XVECTOR (fun)->size <= COMPILED_INTERACTIVE)
+      if (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK <= COMPILED_INTERACTIVE)
        goto lose;
       specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE];
     }