aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/callint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c
index d8e48752b76..f01db7c5755 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -1,5 +1,5 @@
1/* Call a Lisp function interactively. 1/* Call a Lisp function interactively.
2 Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc. 2 Copyright (C) 1985, 1986, 1993, 1994, 1995 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -229,7 +229,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
229 } 229 }
230 else if (COMPILEDP (fun)) 230 else if (COMPILEDP (fun))
231 { 231 {
232 if (XVECTOR (fun)->size <= COMPILED_INTERACTIVE) 232 if (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK <= COMPILED_INTERACTIVE)
233 goto lose; 233 goto lose;
234 specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE]; 234 specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE];
235 } 235 }