summaryrefslogtreecommitdiff
path: root/src/eval.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/eval.c
parent56abfc893c9d66b94adbd4f8d8e45130ab2f798e (diff)
downloademacs-62d163983b5b33dd4fee94e520cae2144d94acda.tar.gz
Fix typo in last change.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 8626f790af7..6cbd5ab0351 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1392,7 +1392,7 @@ Also, a symbol satisfies `commandp' if its function definition does so.")
have an element whose index is COMPILED_INTERACTIVE, which is
where the interactive spec is stored. */
else if (COMPILEDP (fun))
- return (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK > COMPILED_INTERACTIVE
+ return ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
? Qt : Qnil);
/* Strings and vectors are keyboard macros. */