]> git.eshelyaron.com Git - emacs.git/commitdiff
(push_key_description): Pay attention to force_multibyte.
authorKenichi Handa <handa@m17n.org>
Mon, 7 Oct 2002 12:57:40 +0000 (12:57 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 7 Oct 2002 12:57:40 +0000 (12:57 +0000)
src/keymap.c

index 594fccff967de7c7c64e09fd202189a2900ee217..68c63c6d08bf3fbe41d85205426c462f10bd63e1 100644 (file)
@@ -2026,7 +2026,8 @@ push_key_description (c, p, force_multibyte)
     }
   else if (CHARACTERP (make_number (c)))
     {
-      if (NILP (current_buffer->enable_multibyte_characters))
+      if (NILP (current_buffer->enable_multibyte_characters)
+         && ! force_multibyte)
        *p++ = multibyte_char_to_unibyte (c, Qnil);
       else
        p += CHAR_STRING (c, (unsigned char *) p);