summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/insdel.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/insdel.c b/src/insdel.c
index 805200aae56..98d55e57d1f 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -594,7 +594,9 @@ copy_text (from_addr, to_addr, nbytes,
if (c >= 0200 && c < 0400)
{
- if (nonascii_insert_offset > 0)
+ if (! NILP (Vnonascii_translate_table))
+ c = XINT (Faref (Vnonascii_translate_table, make_number (c)));
+ else if (nonascii_insert_offset > 0)
c += nonascii_insert_offset;
else
c += DEFAULT_NONASCII_INSERT_OFFSET;
@@ -629,7 +631,9 @@ count_size_as_multibyte (ptr, nbytes)
unsigned int c = *ptr++;
if (c >= 0200 && c < 0400)
{
- if (nonascii_insert_offset > 0)
+ if (! NILP (Vnonascii_translate_table))
+ c = XINT (Faref (Vnonascii_translate_table, make_number (c)));
+ else if (nonascii_insert_offset > 0)
c += nonascii_insert_offset;
else
c += DEFAULT_NONASCII_INSERT_OFFSET;