aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 8345c8fa06f..1124f607bda 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -343,7 +343,7 @@ extern unsigned char *_fetch_multibyte_char_p;
343#define FETCH_CHAR_AS_MULTIBYTE(pos) \ 343#define FETCH_CHAR_AS_MULTIBYTE(pos) \
344 (!NILP (current_buffer->enable_multibyte_characters) \ 344 (!NILP (current_buffer->enable_multibyte_characters) \
345 ? FETCH_MULTIBYTE_CHAR ((pos)) \ 345 ? FETCH_MULTIBYTE_CHAR ((pos)) \
346 : unibyte_char_to_multibyte (FETCH_BYTE ((pos)))) 346 : unibyte_to_multibyte_table[(FETCH_BYTE ((pos)))])
347 347
348 348
349/* Macros for accessing a character or byte, 349/* Macros for accessing a character or byte,