summaryrefslogtreecommitdiff
path: root/src/doc.c
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-01-30 11:05:41 +0000
committerKenichi Handa <handa@m17n.org>1998-01-30 11:05:41 +0000
commit2d0aa229c2c211e77a4e814d24b3672a0df971d0 (patch)
treec0831a857846e80c9cf04fb78d60f7d1acb77b42 /src/doc.c
parentd566098596f2feec5725b1c0eebbfa2883a99860 (diff)
downloademacs-2d0aa229c2c211e77a4e814d24b3672a0df971d0.tar.gz
(Fsubstitute_command_keys): Declare length_byte out of
internal block.
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/doc.c b/src/doc.c
index c3888b729aa..adc4529e894 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -536,7 +536,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int
Lisp_Object tem;
Lisp_Object keymap;
unsigned char *start;
- int length;
+ int length, length_byte;
Lisp_Object name;
struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
int multibyte;
@@ -594,7 +594,6 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int
else if (strp[0] == '\\' && strp[1] == '[')
{
Lisp_Object firstkey;
- int length_byte;
changed = 1;
strp += 2; /* skip \[ */
@@ -648,7 +647,6 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int
else if (strp[0] == '\\' && (strp[1] == '{' || strp[1] == '<'))
{
struct buffer *oldbuf;
- int length_byte;
changed = 1;
strp += 2; /* skip \{ or \< */