# HG changeset patch # User Juanma Barranquero # Date 1017852407 0 # Node ID e44eec58a815cc5a543c80e1ec654b021c4601fd # Parent bbc359cfb3831f4b3d6d738a76c09df7b0c54f6a (Fdocumentation): Add missing parentheses. (Fdocumentation_property): Likewise. diff -r bbc359cfb383 -r e44eec58a815 src/doc.c --- 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)))) {