diff options
| author | Stefan Monnier | 2002-04-03 18:05:07 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-04-03 18:05:07 +0000 |
| commit | 71cdb109f9d953ce8ca804e4d0948ec1fc385a1e (patch) | |
| tree | c6fda220b46a75cec3f09f1219230379a7d54179 /src/doc.c | |
| parent | 6efa25a1d5491e2018d4cc7611c90caf0197dc25 (diff) | |
| download | emacs-71cdb109f9d953ce8ca804e4d0948ec1fc385a1e.tar.gz emacs-71cdb109f9d953ce8ca804e4d0948ec1fc385a1e.zip | |
(Fdocumentation): More brainos. I need sleep.
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -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; |