summaryrefslogtreecommitdiff
path: root/src
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
commit566213ef45a98d41dd0513ceda3d5c8fc2e18963 (patch)
tree2e26bd2f59a28f6097e106ad7edea90cf75595d3 /src
parent38891d8e30b74518d1c09b19897b7eb7ca8152e6 (diff)
downloademacs-566213ef45a98d41dd0513ceda3d5c8fc2e18963.tar.gz
(Fsubstitute_command_keys): Declare length_byte out of
internal block.
Diffstat (limited to 'src')
-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 \< */