aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorStefan Monnier2002-04-03 18:05:07 +0000
committerStefan Monnier2002-04-03 18:05:07 +0000
commit71cdb109f9d953ce8ca804e4d0948ec1fc385a1e (patch)
treec6fda220b46a75cec3f09f1219230379a7d54179 /src/doc.c
parent6efa25a1d5491e2018d4cc7611c90caf0197dc25 (diff)
downloademacs-71cdb109f9d953ce8ca804e4d0948ec1fc385a1e.tar.gz
emacs-71cdb109f9d953ce8ca804e4d0948ec1fc385a1e.zip
(Fdocumentation): More brainos. I need sleep.
Diffstat (limited to 'src/doc.c')
-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;