emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/xdisp.c [emacs-unicode-2]


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c [emacs-unicode-2]
Date: Sun, 03 Oct 2004 21:42:48 -0400

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.843.2.25 emacs/src/xdisp.c:1.843.2.26
*** emacs/src/xdisp.c:1.843.2.25        Thu Sep 30 01:20:35 2004
--- emacs/src/xdisp.c   Mon Oct  4 01:23:35 2004
***************
*** 6566,6572 ****
             for the *Message* buffer.  */
          for (i = 0; i < nbytes; i++)
            {
!             c = unibyte_char_to_multibyte (msg[i]);
              char_bytes = CHAR_STRING (c, str);
              insert_1_both (str, 1, char_bytes, 1, 0, 0);
            }
--- 6566,6573 ----
             for the *Message* buffer.  */
          for (i = 0; i < nbytes; i++)
            {
!             c = msg[i];
!             c = unibyte_char_to_multibyte (c);
              char_bytes = CHAR_STRING (c, str);
              insert_1_both (str, 1, char_bytes, 1, 0, 0);
            }
***************
*** 7837,7843 ****
          /* Convert a single-byte string to multibyte.  */
          for (i = 0; i < nbytes; i++)
            {
!             c = unibyte_char_to_multibyte (msg[i]);
              n = CHAR_STRING (c, str);
              insert_1_both (str, 1, n, 1, 0, 0);
            }
--- 7838,7845 ----
          /* Convert a single-byte string to multibyte.  */
          for (i = 0; i < nbytes; i++)
            {
!             c = msg[i];
!             c = unibyte_char_to_multibyte (c);
              n = CHAR_STRING (c, str);
              insert_1_both (str, 1, n, 1, 0, 0);
            }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]