aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa2003-05-29 02:18:56 +0000
committerKenichi Handa2003-05-29 02:18:56 +0000
commit857dccb04101e11fa46736e09822906b14dd1441 (patch)
tree6b7707c75fe92d1d979f58fb8dbf339868b3e437 /src/coding.c
parentcfd5bdb9ad2d2301a57dfc6261e3cb92b8fe1ceb (diff)
downloademacs-857dccb04101e11fa46736e09822906b14dd1441.tar.gz
emacs-857dccb04101e11fa46736e09822906b14dd1441.zip
(make_conversion_work_buffer): Change the work buffer
name to the same one as that of Emacs 21.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c6
1 files 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)
6157 { 6157 {
6158 if (NILP (Vcode_conversion_reused_work_buf)) 6158 if (NILP (Vcode_conversion_reused_work_buf))
6159 Vcode_conversion_reused_work_buf 6159 Vcode_conversion_reused_work_buf
6160 = Fget_buffer_create (build_string (" *code-conversion-work<0>*")); 6160 = Fget_buffer_create (build_string (" *code-converting-work<0>*"));
6161 buf = Vcode_conversion_reused_work_buf; 6161 buf = Vcode_conversion_reused_work_buf;
6162 } 6162 }
6163 else 6163 else
6164 { 6164 {
6165 if (depth < 0) 6165 if (depth < 0)
6166 { 6166 {
6167 name = build_string (" *code-conversion-work*"); 6167 name = build_string (" *code-converting-work*");
6168 name = Fgenerate_new_buffer_name (name, Qnil); 6168 name = Fgenerate_new_buffer_name (name, Qnil);
6169 } 6169 }
6170 else 6170 else
6171 { 6171 {
6172 char str[128]; 6172 char str[128];
6173 6173
6174 sprintf (str, " *code-conversion-work*<%d>", depth); 6174 sprintf (str, " *code-converting-work*<%d>", depth);
6175 name = build_string (str); 6175 name = build_string (str);
6176 } 6176 }
6177 buf = Fget_buffer_create (name); 6177 buf = Fget_buffer_create (name);