From 44766095d1b694795f072959c73522687481b775 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 3 Apr 2002 16:46:47 +0000 Subject: [PATCH] (Fdocumentation): Add missing parentheses. (Fdocumentation_property): Likewise. --- src/doc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc.c b/src/doc.c index 6a64e79f740..255631d904b 100644 --- a/src/doc.c +++ b/src/doc.c @@ -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)))) {