aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorKim F. Storm2004-11-09 13:23:00 +0000
committerKim F. Storm2004-11-09 13:23:00 +0000
commit9f77d2aaefd4301e49d9c2dcce5475dfbed1fc63 (patch)
tree110fa8b56702f59ea38f2638f6cd65ef2f4ef9fd /src/doc.c
parent43e50e40db437972c1eb9ca87f89968cb393d316 (diff)
downloademacs-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc.c b/src/doc.c
index 406773e6797..f306caed36a 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -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;