aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index d032f8c9483..0ffb37f4bfa 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -5356,10 +5356,15 @@ static Lisp_Object
5356code_convert_region_unwind (arg) 5356code_convert_region_unwind (arg)
5357 Lisp_Object arg; 5357 Lisp_Object arg;
5358{ 5358{
5359 struct gcpro gcpro1;
5360 GCPRO1 (arg);
5361
5359 inhibit_pre_post_conversion = 0; 5362 inhibit_pre_post_conversion = 0;
5360 Vlast_coding_system_used = XCAR (arg); 5363 Vlast_coding_system_used = XCAR (arg);
5361 for (arg = XCDR (arg); ! NILP (arg); arg = XCDR (arg)) 5364 for (arg = XCDR (arg); ! NILP (arg); arg = XCDR (arg))
5362 Fkill_buffer (XCAR (arg)); 5365 Fkill_buffer (XCAR (arg));
5366
5367 UNGCPRO;
5363 return Qnil; 5368 return Qnil;
5364} 5369}
5365 5370