diff options
| author | Pavel Janík | 2001-11-02 20:46:55 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-02 20:46:55 +0000 |
| commit | b78265036088d5d0eac2a03b929adb50aa59b45c (patch) | |
| tree | de99fe733144deb926fd31ee7bdff95cb1bc5073 /src/doc.c | |
| parent | 00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4 (diff) | |
| download | emacs-b78265036088d5d0eac2a03b929adb50aa59b45c.tar.gz emacs-b78265036088d5d0eac2a03b929adb50aa59b45c.zip | |
Update usage of CHECK_ macros (remove unused second argument).
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -484,13 +484,13 @@ when doc strings are referred to later in the dumped Emacs.") | |||
| 484 | error ("Snarf-documentation can only be called in an undumped Emacs"); | 484 | error ("Snarf-documentation can only be called in an undumped Emacs"); |
| 485 | #endif | 485 | #endif |
| 486 | 486 | ||
| 487 | CHECK_STRING (filename, 0); | 487 | CHECK_STRING (filename); |
| 488 | 488 | ||
| 489 | #ifndef CANNOT_DUMP | 489 | #ifndef CANNOT_DUMP |
| 490 | name = (char *) alloca (XSTRING (filename)->size + 14); | 490 | name = (char *) alloca (XSTRING (filename)->size + 14); |
| 491 | strcpy (name, "../etc/"); | 491 | strcpy (name, "../etc/"); |
| 492 | #else /* CANNOT_DUMP */ | 492 | #else /* CANNOT_DUMP */ |
| 493 | CHECK_STRING (Vdoc_directory, 0); | 493 | CHECK_STRING (Vdoc_directory); |
| 494 | name = (char *) alloca (XSTRING (filename)->size + | 494 | name = (char *) alloca (XSTRING (filename)->size + |
| 495 | XSTRING (Vdoc_directory)->size + 1); | 495 | XSTRING (Vdoc_directory)->size + 1); |
| 496 | strcpy (name, XSTRING (Vdoc_directory)->data); | 496 | strcpy (name, XSTRING (Vdoc_directory)->data); |
| @@ -600,7 +600,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int | |||
| 600 | if (NILP (string)) | 600 | if (NILP (string)) |
| 601 | return Qnil; | 601 | return Qnil; |
| 602 | 602 | ||
| 603 | CHECK_STRING (string, 0); | 603 | CHECK_STRING (string); |
| 604 | tem = Qnil; | 604 | tem = Qnil; |
| 605 | keymap = Qnil; | 605 | keymap = Qnil; |
| 606 | name = Qnil; | 606 | name = Qnil; |