diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h index 2a04f49ea48..9f57a292053 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -330,7 +330,7 @@ extern unsigned char *_fetch_multibyte_char_p; | |||
| 330 | #define FETCH_MULTIBYTE_CHAR(pos) \ | 330 | #define FETCH_MULTIBYTE_CHAR(pos) \ |
| 331 | (_fetch_multibyte_char_p = (((pos) >= GPT_BYTE ? GAP_SIZE : 0) \ | 331 | (_fetch_multibyte_char_p = (((pos) >= GPT_BYTE ? GAP_SIZE : 0) \ |
| 332 | + (pos) + BEG_ADDR - BEG_BYTE), \ | 332 | + (pos) + BEG_ADDR - BEG_BYTE), \ |
| 333 | STRING_CHAR (_fetch_multibyte_char_p, 0)) | 333 | STRING_CHAR (_fetch_multibyte_char_p)) |
| 334 | 334 | ||
| 335 | /* Return character at position POS. If the current buffer is unibyte | 335 | /* Return character at position POS. If the current buffer is unibyte |
| 336 | and the character is not ASCII, make the returning character | 336 | and the character is not ASCII, make the returning character |
| @@ -389,7 +389,7 @@ extern unsigned char *_fetch_multibyte_char_p; | |||
| 389 | (_fetch_multibyte_char_p \ | 389 | (_fetch_multibyte_char_p \ |
| 390 | = (((pos) >= BUF_GPT_BYTE (buf) ? BUF_GAP_SIZE (buf) : 0) \ | 390 | = (((pos) >= BUF_GPT_BYTE (buf) ? BUF_GAP_SIZE (buf) : 0) \ |
| 391 | + (pos) + BUF_BEG_ADDR (buf) - BEG_BYTE), \ | 391 | + (pos) + BUF_BEG_ADDR (buf) - BEG_BYTE), \ |
| 392 | STRING_CHAR (_fetch_multibyte_char_p, 0)) | 392 | STRING_CHAR (_fetch_multibyte_char_p)) |
| 393 | 393 | ||
| 394 | /* Define the actual buffer data structures. */ | 394 | /* Define the actual buffer data structures. */ |
| 395 | 395 | ||