Mercurial > emacs
diff src/doc.c @ 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 | 15b5489c78d6 |
| children | d5cf9afe17d6 |
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)))) {
