* callproc.c (Fcall_process): Fix specpdl nesting for asynchronous

processes.
This commit is contained in:
Andreas Schwab 2012-12-04 22:18:37 +01:00
parent 1155742138
commit 396376f1ae
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
* callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
processes.
2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
* lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state

View file

@ -685,7 +685,7 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
{
if (fd0 >= 0)
emacs_close (fd0);
return Qnil;
return unbind_to (count, Qnil);
}
#if defined (MSDOS)