From 857dccb04101e11fa46736e09822906b14dd1441 Mon Sep 17 00:00:00 2001
From: Kenichi Handa <handa@m17n.org>
Date: Thu, 29 May 2003 02:18:56 +0000
Subject: [PATCH] (make_conversion_work_buffer): Change the work buffer name to
 the same one as that of Emacs 21.

---
 src/coding.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/coding.c b/src/coding.c
index e2b5ed6ed6c..30c04ae0e3d 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -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);
-- 
2.39.5