summaryrefslogtreecommitdiff
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
parent56abfc893c9d66b94adbd4f8d8e45130ab2f798e (diff)
downloademacs-62d163983b5b33dd4fee94e520cae2144d94acda.tar.gz
Fix typo in last change.
-rw-r--r--src/callint.c2
-rw-r--r--src/doc.c4
-rw-r--r--src/eval.c2
3 files changed, 4 insertions, 4 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];
}
diff --git a/src/doc.c b/src/doc.c
index 6c998636a7b..52b3ad724f4 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -279,7 +279,7 @@ string is passed through `substitute-command-keys'.")
}
else if (COMPILEDP (fun))
{
- if (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK <= COMPILED_DOC_STRING)
+ if ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) <= COMPILED_DOC_STRING)
return Qnil;
tem = XVECTOR (fun)->contents[COMPILED_DOC_STRING];
if (STRINGP (tem))
@@ -394,7 +394,7 @@ store_function_docstring (fun, offset)
{
/* This bytecode object must have a slot for the
docstring, since we've found a docstring for it. */
- if (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK > COMPILED_DOC_STRING)
+ if ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_DOC_STRING)
XSETFASTINT (XVECTOR (fun)->contents[COMPILED_DOC_STRING], offset);
}
}
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. */