1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(Fdocumentation): Add missing parentheses.

(Fdocumentation_property): Likewise.
This commit is contained in:
Juanma Barranquero 2002-04-03 16:46:47 +00:00
parent 8caa93d2b7
commit 44766095d1

View File

@ -441,7 +441,7 @@ string is passed through `substitute-command-keys'. */)
/* If DOC is 0, it's typically because of a dumped file missing
from the DOC file (bug in src/Makefile.in). */
if (EQ (tem, make_number (0))
if (EQ (tem, make_number (0)))
tem = Qnil;
if (INTEGERP (doc) || CONSP (doc))
{
@ -487,7 +487,7 @@ aren't strings. */)
documentation_property:
tem = Fget (symbol, prop);
if (EQ (tem, make_number (0))
if (EQ (tem, make_number (0)))
tem = Qnil;
if (INTEGERP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem))))
{