diff options
| author | Kenichi Handa | 1998-01-30 11:05:41 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-01-30 11:05:41 +0000 |
| commit | 2d0aa229c2c211e77a4e814d24b3672a0df971d0 (patch) | |
| tree | c0831a857846e80c9cf04fb78d60f7d1acb77b42 /src | |
| parent | d566098596f2feec5725b1c0eebbfa2883a99860 (diff) | |
| download | emacs-2d0aa229c2c211e77a4e814d24b3672a0df971d0.tar.gz emacs-2d0aa229c2c211e77a4e814d24b3672a0df971d0.zip | |
(Fsubstitute_command_keys): Declare length_byte out of
internal block.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.c | 4 |
1 files changed, 1 insertions, 3 deletions
| @@ -536,7 +536,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int | |||
| 536 | Lisp_Object tem; | 536 | Lisp_Object tem; |
| 537 | Lisp_Object keymap; | 537 | Lisp_Object keymap; |
| 538 | unsigned char *start; | 538 | unsigned char *start; |
| 539 | int length; | 539 | int length, length_byte; |
| 540 | Lisp_Object name; | 540 | Lisp_Object name; |
| 541 | struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | 541 | struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
| 542 | int multibyte; | 542 | int multibyte; |
| @@ -594,7 +594,6 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int | |||
| 594 | else if (strp[0] == '\\' && strp[1] == '[') | 594 | else if (strp[0] == '\\' && strp[1] == '[') |
| 595 | { | 595 | { |
| 596 | Lisp_Object firstkey; | 596 | Lisp_Object firstkey; |
| 597 | int length_byte; | ||
| 598 | 597 | ||
| 599 | changed = 1; | 598 | changed = 1; |
| 600 | strp += 2; /* skip \[ */ | 599 | strp += 2; /* skip \[ */ |
| @@ -648,7 +647,6 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int | |||
| 648 | else if (strp[0] == '\\' && (strp[1] == '{' || strp[1] == '<')) | 647 | else if (strp[0] == '\\' && (strp[1] == '{' || strp[1] == '<')) |
| 649 | { | 648 | { |
| 650 | struct buffer *oldbuf; | 649 | struct buffer *oldbuf; |
| 651 | int length_byte; | ||
| 652 | 650 | ||
| 653 | changed = 1; | 651 | changed = 1; |
| 654 | strp += 2; /* skip \{ or \< */ | 652 | strp += 2; /* skip \{ or \< */ |