1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-20 12:40:56 -08:00

(code_conversion_restore): GCPRO arg.

This commit is contained in:
Kenichi Handa 2006-01-17 02:38:38 +00:00
parent 877173ab42
commit 948bdcf344

View file

@ -6596,7 +6596,9 @@ code_conversion_restore (arg)
Lisp_Object arg;
{
Lisp_Object current, workbuf;
struct gcpro gcpro1;
GCPRO1 (arg);
current = XCAR (arg);
workbuf = XCDR (arg);
if (! NILP (workbuf))
@ -6607,6 +6609,7 @@ code_conversion_restore (arg)
Fkill_buffer (workbuf);
}
set_buffer_internal (XBUFFER (current));
UNGCPRO;
return Qnil;
}