1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 19:10:37 -08:00

(cmd_error): Allow current_perdisplay to be null.

This commit is contained in:
Karl Heuer 1995-03-03 02:08:49 +00:00
parent 44820cc38c
commit 217e16c10f

View file

@ -768,15 +768,19 @@ cmd_error (data)
Vstandard_output = Qt;
Vstandard_input = Qt;
Vexecuting_macro = Qnil;
clear_prefix_arg ();
cancel_echoing ();
if (current_perdisplay)
{
clear_prefix_arg ();
cancel_echoing ();
}
cmd_error_internal (data, 0);
Vquit_flag = Qnil;
Vinhibit_quit = Qnil;
#ifdef MULTI_PERDISPLAY
unlock_display ();
if (current_perdisplay)
unlock_display ();
#endif
return make_number (0);