aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1999-01-25 09:20:43 +0000
committerAndreas Schwab1999-01-25 09:20:43 +0000
commitbfa8ca433a62c4ea1e7b0ff35fae1ee18e7a682e (patch)
tree42709598b68eaebfd300e1ade981470bc2743832
parent7589a1d97e9150b9352393d049b3cf6a2cc68086 (diff)
downloademacs-bfa8ca433a62c4ea1e7b0ff35fae1ee18e7a682e.tar.gz
emacs-bfa8ca433a62c4ea1e7b0ff35fae1ee18e7a682e.zip
(Fsignal): Move comment to avoid confusing make-docfile.
-rw-r--r--src/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index 60672553f15..45147ecfb35 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1212,11 +1212,11 @@ The symbol `error' should normally be one of them.\n\
1212DATA should be a list. Its elements are printed as part of the error message.\n\ 1212DATA should be a list. Its elements are printed as part of the error message.\n\
1213If the signal is handled, DATA is made available to the handler.\n\ 1213If the signal is handled, DATA is made available to the handler.\n\
1214See also the function `condition-case'.") 1214See 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;