summaryrefslogtreecommitdiff
path: root/src/doc.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/doc.c
parent56abfc893c9d66b94adbd4f8d8e45130ab2f798e (diff)
downloademacs-62d163983b5b33dd4fee94e520cae2144d94acda.tar.gz
Fix typo in last change.
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c4
1 files changed, 2 insertions, 2 deletions
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);
}
}