diff options
| author | Kim F. Storm | 2004-11-09 13:23:00 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-11-09 13:23:00 +0000 |
| commit | 9f77d2aaefd4301e49d9c2dcce5475dfbed1fc63 (patch) | |
| tree | 110fa8b56702f59ea38f2638f6cd65ef2f4ef9fd /src/doc.c | |
| parent | 43e50e40db437972c1eb9ca87f89968cb393d316 (diff) | |
| download | emacs-9f77d2aaefd4301e49d9c2dcce5475dfbed1fc63.tar.gz emacs-9f77d2aaefd4301e49d9c2dcce5475dfbed1fc63.zip | |
Include <ctype.h>.
(Fsubstitute_command_keys): Remove unused variable 'firstkey'.
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 24 | 24 | ||
| 25 | #include <sys/types.h> | 25 | #include <sys/types.h> |
| 26 | #include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/ | 26 | #include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/ |
| 27 | #include <ctype.h> | ||
| 27 | 28 | ||
| 28 | #ifdef HAVE_FCNTL_H | 29 | #ifdef HAVE_FCNTL_H |
| 29 | #include <fcntl.h> | 30 | #include <fcntl.h> |
| @@ -826,7 +827,6 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int | |||
| 826 | } | 827 | } |
| 827 | else if (strp[0] == '\\' && strp[1] == '[') | 828 | else if (strp[0] == '\\' && strp[1] == '[') |
| 828 | { | 829 | { |
| 829 | Lisp_Object firstkey; | ||
| 830 | int start_idx; | 830 | int start_idx; |
| 831 | 831 | ||
| 832 | changed = 1; | 832 | changed = 1; |