comparison src/eval.c @ 25314:2e0c4fbef65b

(Fsignal): Don't reset redisplaying_p here.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 17 Aug 1999 22:44:44 +0000
parents 0be923a80096
children 0a7261c1d487
comparison
equal deleted inserted replaced
25313:6b4475fbef86 25314:2e0c4fbef65b
1217 Lisp_Object debugger_value; 1217 Lisp_Object debugger_value;
1218 Lisp_Object string; 1218 Lisp_Object string;
1219 Lisp_Object real_error_symbol; 1219 Lisp_Object real_error_symbol;
1220 Lisp_Object combined_data; 1220 Lisp_Object combined_data;
1221 extern int display_busy_cursor_p; 1221 extern int display_busy_cursor_p;
1222 extern int redisplaying_p;
1223 1222
1224 immediate_quit = 0; 1223 immediate_quit = 0;
1225 if (gc_in_progress || waiting_for_input) 1224 if (gc_in_progress || waiting_for_input)
1226 abort (); 1225 abort ();
1227 1226
1234 1233
1235 #ifdef HAVE_X_WINDOWS 1234 #ifdef HAVE_X_WINDOWS
1236 if (display_busy_cursor_p) 1235 if (display_busy_cursor_p)
1237 Fx_hide_busy_cursor (Qt); 1236 Fx_hide_busy_cursor (Qt);
1238 #endif 1237 #endif
1239 redisplaying_p = 0;
1240 1238
1241 /* This hook is used by edebug. */ 1239 /* This hook is used by edebug. */
1242 if (! NILP (Vsignal_hook_function)) 1240 if (! NILP (Vsignal_hook_function))
1243 call2 (Vsignal_hook_function, error_symbol, data); 1241 call2 (Vsignal_hook_function, error_symbol, data);
1244 1242