aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/doc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc.c b/src/doc.c
index 255631d904b..35640363046 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -441,8 +441,8 @@ string is passed through `substitute-command-keys'. */)
441 441
442 /* If DOC is 0, it's typically because of a dumped file missing 442 /* If DOC is 0, it's typically because of a dumped file missing
443 from the DOC file (bug in src/Makefile.in). */ 443 from the DOC file (bug in src/Makefile.in). */
444 if (EQ (tem, make_number (0))) 444 if (EQ (doc, make_number (0)))
445 tem = Qnil; 445 doc = Qnil;
446 if (INTEGERP (doc) || CONSP (doc)) 446 if (INTEGERP (doc) || CONSP (doc))
447 { 447 {
448 Lisp_Object tem; 448 Lisp_Object tem;
@@ -488,7 +488,7 @@ aren't strings. */)
488 488
489 tem = Fget (symbol, prop); 489 tem = Fget (symbol, prop);
490 if (EQ (tem, make_number (0))) 490 if (EQ (tem, make_number (0)))
491 tem = Qnil; 491 tem = Qnil;
492 if (INTEGERP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem)))) 492 if (INTEGERP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem))))
493 { 493 {
494 Lisp_Object doc = tem; 494 Lisp_Object doc = tem;