aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 865e8dd3202..612e34773ef 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1850,7 +1850,9 @@ push_key_description (c, p)
1850 *p++ = 'P'; 1850 *p++ = 'P';
1851 *p++ = 'C'; 1851 *p++ = 'C';
1852 } 1852 }
1853 else if (c < 128) 1853 else if (c < 128
1854 || (NILP (current_buffer->enable_multibyte_characters)
1855 && SINGLE_BYTE_CHAR_P (c)))
1854 *p++ = c; 1856 *p++ = c;
1855 else 1857 else
1856 { 1858 {