changeset 44383:e44eec58a815

(Fdocumentation): Add missing parentheses. (Fdocumentation_property): Likewise.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 03 Apr 2002 16:46:47 +0000
parents bbc359cfb383
children 3626a12fe452
files src/doc.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/doc.c	Wed Apr 03 16:46:10 2002 +0000
+++ b/src/doc.c	Wed Apr 03 16:46:47 2002 +0000
@@ -441,7 +441,7 @@
 
   /* 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 @@
  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))))
     {