diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index 7e6e8daeafd..2a04f49ea48 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -339,7 +339,7 @@ extern unsigned char *_fetch_multibyte_char_p; | |||
| 339 | #define FETCH_CHAR_AS_MULTIBYTE(pos) \ | 339 | #define FETCH_CHAR_AS_MULTIBYTE(pos) \ |
| 340 | (!NILP (current_buffer->enable_multibyte_characters) \ | 340 | (!NILP (current_buffer->enable_multibyte_characters) \ |
| 341 | ? FETCH_MULTIBYTE_CHAR ((pos)) \ | 341 | ? FETCH_MULTIBYTE_CHAR ((pos)) \ |
| 342 | : unibyte_to_multibyte_table[(FETCH_BYTE ((pos)))]) | 342 | : UNIBYTE_TO_CHAR (FETCH_BYTE ((pos)))) |
| 343 | 343 | ||
| 344 | 344 | ||
| 345 | /* Macros for accessing a character or byte, | 345 | /* Macros for accessing a character or byte, |