+2005-12-14 Kyotaro HORIGUCHI <horiguti@meadowy.org> (tiny change)
+
+ * coding.c (code_convert_region_unwind): GCPRO arg.
+
2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
* xfns.c (compute_tip_xy): Calculate root_y the same way as root_x,
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;
}