summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-01-05 07:45:50 +0000
committerRoland McGrath <roland@gnu.org>1995-01-05 07:45:50 +0000
commit62d163983b5b33dd4fee94e520cae2144d94acda (patch)
treee59e1b16aab10237088a7da7d3c3dca335f9e187 /src/callint.c
parent56abfc893c9d66b94adbd4f8d8e45130ab2f798e (diff)
downloademacs-62d163983b5b33dd4fee94e520cae2144d94acda.tar.gz
Fix typo in last change.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index f01db7c5755..3de79be2a39 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -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 & PSEUDOVECTOR_SIZE_MASK <= COMPILED_INTERACTIVE)
+ if ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) <= COMPILED_INTERACTIVE)
goto lose;
specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE];
}