aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
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);