Mercurial > emacs
annotate lispref/errors.texi @ 54694:253149f265f2
*** empty log message ***
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sat, 03 Apr 2004 20:02:16 +0000 |
parents | bedee14106b1 |
children | d2c60b264fa8 |
rev | line source |
---|---|
2899 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38581
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1999 Free Software Foundation, Inc. |
2899 | 4 @c See the file elisp.texi for copying conditions. |
5 @setfilename ../info/errors | |
6 @node Standard Errors, Standard Buffer-Local Variables, GNU Emacs Internals, Top | |
7 @appendix Standard Errors | |
8 | |
9 Here is the complete list of the error symbols in standard Emacs, | |
10 grouped by concept. The list includes each symbol's message (on the | |
7600 | 11 @code{error-message} property of the symbol) and a cross reference to a |
2899 | 12 description of how the error can occur. |
13 | |
7600 | 14 Each error symbol has an @code{error-conditions} property that is a |
15 list of symbols. Normally this list includes the error symbol itself | |
2899 | 16 and the symbol @code{error}. Occasionally it includes additional |
7600 | 17 symbols, which are intermediate classifications, narrower than |
18 @code{error} but broader than a single error symbol. For example, all | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
19 the errors in accessing files have the condition @code{file-error}. If |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
20 we do not say here that a certain error symbol has additional error |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
21 conditions, that means it has none. |
2899 | 22 |
23 As a special exception, the error symbol @code{quit} does not have the | |
24 condition @code{error}, because quitting is not considered an error. | |
25 | |
26 @xref{Errors}, for an explanation of how errors are generated and | |
27 handled. | |
28 | |
29 @table @code | |
30 @item @var{symbol} | |
31 @var{string}; @var{reference}. | |
32 | |
33 @item error | |
34 @code{"error"}@* | |
35 @xref{Errors}. | |
36 | |
37 @item quit | |
38 @code{"Quit"}@* | |
39 @xref{Quitting}. | |
40 | |
41 @item args-out-of-range | |
42 @code{"Args out of range"}@* | |
43 @xref{Sequences Arrays Vectors}. | |
44 | |
45 @item arith-error | |
46 @code{"Arithmetic error"}@* | |
47 See @code{/} and @code{%} in @ref{Numbers}. | |
48 | |
49 @item beginning-of-buffer | |
50 @code{"Beginning of buffer"}@* | |
51 @xref{Motion}. | |
52 | |
53 @item buffer-read-only | |
54 @code{"Buffer is read-only"}@* | |
55 @xref{Read Only Buffers}. | |
56 | |
26288 | 57 @item coding-system-error |
58 @code{"Invalid coding system"}@* | |
59 @xref{Coding Systems}. | |
60 | |
12098 | 61 @item cyclic-function-indirection |
22267
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
62 @code{"Symbol's chain of function indirections\@* contains a loop"}@* |
12098 | 63 @xref{Function Indirection}. |
64 | |
2899 | 65 @item end-of-buffer |
66 @code{"End of buffer"}@* | |
67 @xref{Motion}. | |
68 | |
69 @item end-of-file | |
70 @code{"End of file during parsing"}@* | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
71 Note that this is not a subcategory of @code{file-error}, |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
72 because it pertains to the Lisp reader, not to file I/O.@* |
2899 | 73 @xref{Input Functions}. |
74 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
75 @item file-already-exists |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
76 This is a subcategory of @code{file-error}.@* |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
77 @xref{Writing to Files}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
78 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
79 @item file-date-error |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
80 This is a subcategory of @code{file-error}. It occurs when |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
81 @code{copy-file} tries and fails to set the last-modification time of |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
82 the output file.@* |
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
83 @xref{Changing Files}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
84 |
2899 | 85 @item file-error |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
86 We do not list the error-strings of this error and its subcategories, |
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
87 because the error message is normally constructed from the data items |
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
88 alone when the error condition @code{file-error} is present. Thus, |
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
89 the error-strings are not very relevant. However, these error symbols |
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
90 do have @code{error-message} properties, and if no data is provided, |
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
91 the @code{error-message} property @emph{is} used.@* |
2899 | 92 @xref{Files}. |
93 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38581
diff
changeset
|
94 @item file-locked |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
95 This is a subcategory of @code{file-error}.@* |
2899 | 96 @xref{File Locks}. |
97 | |
98 @item file-supersession | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
99 This is a subcategory of @code{file-error}.@* |
7600 | 100 @xref{Modification Time}. |
2899 | 101 |
26288 | 102 @item ftp-error |
103 This is a subcategory of @code{file-error}, which results from problems | |
104 in accessing a remote file using ftp.@* | |
38581 | 105 @xref{Remote Files,,, emacs, The GNU Emacs Manual}. |
26288 | 106 |
2899 | 107 @item invalid-function |
108 @code{"Invalid function"}@* | |
109 @xref{Classifying Lists}. | |
110 | |
111 @item invalid-read-syntax | |
112 @code{"Invalid read syntax"}@* | |
113 @xref{Input Functions}. | |
114 | |
115 @item invalid-regexp | |
116 @code{"Invalid regexp"}@* | |
117 @xref{Regular Expressions}. | |
118 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
119 @item mark-inactive |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
120 @code{"The mark is not active now"}@* |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
121 @xref{The Mark}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
122 |
2899 | 123 @item no-catch |
124 @code{"No catch for tag"}@* | |
125 @xref{Catch and Throw}. | |
126 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
127 @item scan-error |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
128 @code{"Scan error"}@* |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
129 This happens when certain syntax-parsing functions |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
130 find invalid syntax or mismatched parentheses.@* |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
131 @xref{List Motion}, and @ref{Parsing Expressions}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
132 |
2899 | 133 @item search-failed |
134 @code{"Search failed"}@* | |
135 @xref{Searching and Matching}. | |
136 | |
137 @item setting-constant | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38581
diff
changeset
|
138 @code{"Attempt to set a constant symbol"}@* |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
139 The values of the symbols @code{nil} and @code{t}, |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
140 and any symbols that start with @samp{:}, |
2899 | 141 may not be changed.@* |
142 @xref{Constant Variables, , Variables that Never Change}. | |
143 | |
26288 | 144 @item text-read-only |
145 @code{"Text is read-only"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
146 This is a subcategory of @code{buffer-read-only}.@* |
26288 | 147 @xref{Special Properties}. |
148 | |
12098 | 149 @item undefined-color |
150 @code{"Undefined color"}@* | |
151 @xref{Color Names}. | |
152 | |
2899 | 153 @item void-function |
154 @code{"Symbol's function definition is void"}@* | |
155 @xref{Function Cells}. | |
156 | |
157 @item void-variable | |
158 @code{"Symbol's value as variable is void"}@* | |
159 @xref{Accessing Variables}. | |
160 | |
161 @item wrong-number-of-arguments | |
162 @code{"Wrong number of arguments"}@* | |
163 @xref{Classifying Lists}. | |
164 | |
165 @item wrong-type-argument | |
166 @code{"Wrong type argument"}@* | |
167 @xref{Type Predicates}. | |
168 @end table | |
12098 | 169 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
170 These kinds of error, which are classified as special cases of |
12098 | 171 @code{arith-error}, can occur on certain systems for invalid use of |
172 mathematical functions. | |
173 | |
174 @table @code | |
175 @item domain-error | |
176 @code{"Arithmetic domain error"}@* | |
177 @xref{Math Functions}. | |
178 | |
179 @item overflow-error | |
180 @code{"Arithmetic overflow error"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
181 This is a subcategory of @code{domain-error}.@* |
12098 | 182 @xref{Math Functions}. |
183 | |
184 @item range-error | |
185 @code{"Arithmetic range error"}@* | |
186 @xref{Math Functions}. | |
187 | |
188 @item singularity-error | |
189 @code{"Arithmetic singularity error"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
190 This is a subcategory of @code{domain-error}.@* |
12098 | 191 @xref{Math Functions}. |
192 | |
193 @item underflow-error | |
194 @code{"Arithmetic underflow error"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
195 This is a subcategory of @code{domain-error}.@* |
12098 | 196 @xref{Math Functions}. |
197 @end table | |
52401 | 198 |
199 @ignore | |
200 arch-tag: 717c6048-5d9d-4c7d-9a62-df57390b6f19 | |
201 @end ignore |