diff options
Diffstat (limited to 'src/character.h')
| -rw-r--r-- | src/character.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/character.h b/src/character.h index f0b0002032e..77c670728d0 100644 --- a/src/character.h +++ b/src/character.h | |||
| @@ -417,10 +417,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 417 | if (!NILP (BVAR (current_buffer, enable_multibyte_characters))) \ | 417 | if (!NILP (BVAR (current_buffer, enable_multibyte_characters))) \ |
| 418 | { \ | 418 | { \ |
| 419 | unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ | 419 | unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ |
| 420 | int len; \ | 420 | int string_len; \ |
| 421 | \ | 421 | \ |
| 422 | OUTPUT= STRING_CHAR_AND_LENGTH (ptr, len); \ | 422 | OUTPUT= STRING_CHAR_AND_LENGTH (ptr, string_len); \ |
| 423 | BYTEIDX += len; \ | 423 | BYTEIDX += string_len; \ |
| 424 | } \ | 424 | } \ |
| 425 | else \ | 425 | else \ |
| 426 | { \ | 426 | { \ |