mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 13:10:57 -08:00
(Fdocumentation): More brainos. I need sleep.
This commit is contained in:
parent
6efa25a1d5
commit
71cdb109f9
1 changed files with 3 additions and 3 deletions
|
|
@ -441,8 +441,8 @@ 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)))
|
||||
tem = Qnil;
|
||||
if (EQ (doc, make_number (0)))
|
||||
doc = Qnil;
|
||||
if (INTEGERP (doc) || CONSP (doc))
|
||||
{
|
||||
Lisp_Object tem;
|
||||
|
|
@ -488,7 +488,7 @@ aren't strings. */)
|
|||
|
||||
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue