changeset 89446:1c88b057b9d3

(make_conversion_work_buffer): Change the work buffer name to the same one as that of Emacs 21.
author Kenichi Handa <handa@m17n.org>
date Thu, 29 May 2003 02:18:56 +0000
parents e15e5e4d3cfa
children afecc4e131a1
files src/coding.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Thu May 29 02:18:31 2003 +0000
+++ b/src/coding.c	Thu May 29 02:18:56 2003 +0000
@@ -6157,21 +6157,21 @@
     {
       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);