diff options
| author | Andreas Schwab | 1999-01-25 09:20:43 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1999-01-25 09:20:43 +0000 |
| commit | bfa8ca433a62c4ea1e7b0ff35fae1ee18e7a682e (patch) | |
| tree | 42709598b68eaebfd300e1ade981470bc2743832 /src | |
| parent | 7589a1d97e9150b9352393d049b3cf6a2cc68086 (diff) | |
| download | emacs-bfa8ca433a62c4ea1e7b0ff35fae1ee18e7a682e.tar.gz emacs-bfa8ca433a62c4ea1e7b0ff35fae1ee18e7a682e.zip | |
(Fsignal): Move comment to avoid confusing make-docfile.
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 4 |
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\ | |||
| 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; |