mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-28 08:11:05 -08:00
(make_conversion_work_buffer): Change the work buffer
name to the same one as that of Emacs 21.
This commit is contained in:
parent
cfd5bdb9ad
commit
857dccb041
1 changed files with 3 additions and 3 deletions
|
|
@ -6157,21 +6157,21 @@ make_conversion_work_buffer (multibytep, depth)
|
||||||
{
|
{
|
||||||
if (NILP (Vcode_conversion_reused_work_buf))
|
if (NILP (Vcode_conversion_reused_work_buf))
|
||||||
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;
|
buf = Vcode_conversion_reused_work_buf;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (depth < 0)
|
if (depth < 0)
|
||||||
{
|
{
|
||||||
name = build_string (" *code-conversion-work*");
|
name = build_string (" *code-converting-work*");
|
||||||
name = Fgenerate_new_buffer_name (name, Qnil);
|
name = Fgenerate_new_buffer_name (name, Qnil);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char str[128];
|
char str[128];
|
||||||
|
|
||||||
sprintf (str, " *code-conversion-work*<%d>", depth);
|
sprintf (str, " *code-converting-work*<%d>", depth);
|
||||||
name = build_string (str);
|
name = build_string (str);
|
||||||
}
|
}
|
||||||
buf = Fget_buffer_create (name);
|
buf = Fget_buffer_create (name);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue