comparison src/eval.c @ 24171:44241f56675a

(Fsignal): Move comment to avoid confusing make-docfile.
author Andreas Schwab <schwab@suse.de>
date Mon, 25 Jan 1999 09:20:43 +0000
parents 19ff7845d5f7
children 44e1a823dd6b
comparison
equal deleted inserted replaced
24170:3689490f7f65 24171:44241f56675a
1210 The symbol `error' should normally be one of them.\n\ 1210 The symbol `error' should normally be one of them.\n\
1211 \n\ 1211 \n\
1212 DATA should be a list. Its elements are printed as part of the error message.\n\ 1212 DATA should be a list. Its elements are printed as part of the error message.\n\
1213 If the signal is handled, DATA is made available to the handler.\n\ 1213 If the signal is handled, DATA is made available to the handler.\n\
1214 See also the function `condition-case'.") 1214 See also the function `condition-case'.")
1215 /* When memory is full, ERROR-SYMBOL is nil,
1216 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA). */
1217 (error_symbol, data) 1215 (error_symbol, data)
1218 Lisp_Object error_symbol, data; 1216 Lisp_Object error_symbol, data;
1219 { 1217 {
1218 /* When memory is full, ERROR-SYMBOL is nil,
1219 and DATA is (REAL-ERROR-SYMBOL . REAL-DATA). */
1220 register struct handler *allhandlers = handlerlist; 1220 register struct handler *allhandlers = handlerlist;
1221 Lisp_Object conditions; 1221 Lisp_Object conditions;
1222 extern int gc_in_progress; 1222 extern int gc_in_progress;
1223 extern int waiting_for_input; 1223 extern int waiting_for_input;
1224 Lisp_Object debugger_value; 1224 Lisp_Object debugger_value;