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 65754b4b1bb..f7722f3212b 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -6972,10 +6972,10 @@ make_conversion_work_buffer (multibyte)
6972 } 6972 }
6973 else 6973 else
6974 { 6974 {
6975 name = Vcode_conversion_workbuf_name;
6976 workbuf = Fget_buffer_create (name);
6977 if (NILP (Vcode_conversion_reused_workbuf)) 6975 if (NILP (Vcode_conversion_reused_workbuf))
6978 Vcode_conversion_reused_workbuf = workbuf; 6976 Vcode_conversion_reused_workbuf
6977 = Fget_buffer_create (Vcode_conversion_workbuf_name);
6978 workbuf = Vcode_conversion_reused_workbuf;
6979 } 6979 }
6980 current = current_buffer; 6980 current = current_buffer;
6981 set_buffer_internal (XBUFFER (workbuf)); 6981 set_buffer_internal (XBUFFER (workbuf));