aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 909b3779b06..d6f6b2c7703 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2530,7 +2530,7 @@ current buffer is cleared. */)
2530 p = GAP_END_ADDR; 2530 p = GAP_END_ADDR;
2531 stop = Z; 2531 stop = Z;
2532 } 2532 }
2533 if (ASCII_BYTE_P (*p)) 2533 if (ASCII_CHAR_P (*p))
2534 p++, pos++; 2534 p++, pos++;
2535 else if (CHAR_BYTE8_HEAD_P (*p)) 2535 else if (CHAR_BYTE8_HEAD_P (*p))
2536 { 2536 {
@@ -2602,7 +2602,7 @@ current buffer is cleared. */)
2602 stop = Z; 2602 stop = Z;
2603 } 2603 }
2604 2604
2605 if (ASCII_BYTE_P (*p)) 2605 if (ASCII_CHAR_P (*p))
2606 p++, pos++; 2606 p++, pos++;
2607 else if (EQ (flag, Qt) 2607 else if (EQ (flag, Qt)
2608 && ! CHAR_BYTE8_HEAD_P (*p) 2608 && ! CHAR_BYTE8_HEAD_P (*p)