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:
parent
8caa93d2b7
commit
44766095d1
@ -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))))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user