Mercurial > emacs
changeset 44385:d5cf9afe17d6
(Fdocumentation): More brainos. I need sleep.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 03 Apr 2002 18:05:07 +0000 |
parents | 3626a12fe452 |
children | b3544d5a262d |
files | src/doc.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/doc.c Wed Apr 03 16:56:36 2002 +0000 +++ b/src/doc.c Wed Apr 03 18:05:07 2002 +0000 @@ -441,8 +441,8 @@ /* 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))) - tem = Qnil; + if (EQ (doc, make_number (0))) + doc = Qnil; if (INTEGERP (doc) || CONSP (doc)) { Lisp_Object tem; @@ -488,7 +488,7 @@ tem = Fget (symbol, prop); if (EQ (tem, make_number (0))) - tem = Qnil; + tem = Qnil; if (INTEGERP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem)))) { Lisp_Object doc = tem;