Mercurial > emacs
changeset 67555:3e443750ea4c
(code_convert_region_unwind): GCPRO arg.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 14 Dec 2005 00:42:40 +0000 |
parents | 11413776131b |
children | a0ffaa99c612 |
files | src/coding.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/coding.c Wed Dec 14 00:01:22 2005 +0000 +++ b/src/coding.c Wed Dec 14 00:42:40 2005 +0000 @@ -5360,10 +5360,15 @@ code_convert_region_unwind (arg) Lisp_Object arg; { + struct gcpro gcpro1; + GCPRO1 (arg); + inhibit_pre_post_conversion = 0; Vlast_coding_system_used = XCAR (arg); for (arg = XCDR (arg); ! NILP (arg); arg = XCDR (arg)) Fkill_buffer (XCAR (arg)); + + UNGCPRO; return Qnil; }