]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdocumentation): Add missing parentheses.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 3 Apr 2002 16:46:47 +0000 (16:46 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 3 Apr 2002 16:46:47 +0000 (16:46 +0000)
(Fdocumentation_property): Likewise.

src/doc.c

index 6a64e79f74025f8198757e19034f924c84b7d371..255631d904b90669d3e300828edd75ef42fdddbe 100644 (file)
--- 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))))
     {