]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_conversion_work_buffer): Change the work buffer
authorKenichi Handa <handa@m17n.org>
Thu, 29 May 2003 02:18:56 +0000 (02:18 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 29 May 2003 02:18:56 +0000 (02:18 +0000)
name to the same one as that of Emacs 21.

src/coding.c

index e2b5ed6ed6c56a750bfc1efab382c5421ce76e4d..30c04ae0e3da50b33a206c4673de0e0ba0955bb3 100644 (file)
@@ -6157,21 +6157,21 @@ make_conversion_work_buffer (multibytep, depth)
     {
       if (NILP (Vcode_conversion_reused_work_buf))
        Vcode_conversion_reused_work_buf
-         = Fget_buffer_create (build_string (" *code-conversion-work<0>*"));
+         = Fget_buffer_create (build_string (" *code-converting-work<0>*"));
       buf = Vcode_conversion_reused_work_buf;
     }
   else
     {
       if (depth < 0)
        {
-         name = build_string (" *code-conversion-work*");
+         name = build_string (" *code-converting-work*");
          name = Fgenerate_new_buffer_name (name, Qnil);
        }
       else
        {
          char str[128];
 
-         sprintf (str, " *code-conversion-work*<%d>", depth);
+         sprintf (str, " *code-converting-work*<%d>", depth);
          name = build_string (str);
        }
       buf = Fget_buffer_create (name);