Mercurial > emacs
annotate lispref/errors.texi @ 73332:56f58b643a80
Merge from upstream, upto version 5.22.
After 5.0:
`cperl-add-tags-recurse-noxs-fullpath': new function (for -batch mode)
Fine-grained changelog:
`cperl-hook-after-change': New configuration variable
`cperl-vc-sccs-header': Likewise.
`cperl-vc-sccs-header': Likewise.
`cperl-vc-header-alist': Default via two preceding variables
`cperl-invalid-face': Remove double quoting under XEmacs
(still needed under 21.2)
`cperl-tips': Update URLs for resources
`cperl-problems': Likewise.
`cperl-praise': Mention new features
New C-c key bindings: for `cperl-find-bad-style',
`cperl-pod-spell', `cperl-here-doc-spell', `cperl-narrow-to-here-doc',
`cperl-perdoc', `cperl-perldoc-at-point'
CPerl Mode menu changes: "Fix style by spaces", "Imenu on Perl Info"
moved, new submenu of Tools with Ispell entries and narrowing.
`cperl-after-sub-regexp': New defsubst
`cperl-imenu--function-name-regexp-perl': Use `cperl-after-sub-regexp',
Allows heads up to head4
Allow "package;"
`defun-prompt-regexp': Use `cperl-after-sub-regexp',
`paren-backwards-message': ??? Something for XEmacs???
`cperl-mode': Never auto-switch abbrev-mode off
Try to allow '_' be non-word char
Do not use `font-lock-unfontify-region-function' on XEmacs
Reset syntax cache on mode start
Support multiline facification (even
on legacy `font-lock')
`cperl-facemenu-add-face-function': ??? Some contributed code ???
`cperl-after-change-function': Since `font-lock' and `lazy-lock'
refuse to inform us whether the fontification is due to lazy
calling or due to edit to a buffer, install our own hook
(controlled by `cperl-hook-after-change')
`cperl-electric-pod': =cut may have been recognized as start
`cperl-block-p': Moved, updated for attributes
`cperl-calculate-indent': Try to allow '_' be non-word char
Support subs with attributes
`cperl-where-am-i': Queit (?) a warning
`cperl-cached-syntax-table' New function
`cperl-forward-re': Use `cperl-cached-syntax-table'
`cperl-unwind-to-safe': Recognize `syntax-type' property
changing in a middle of line
`cperl-find-sub-attrs': New function
`cperl-find-pods-heres': Allow many <<EOP per line
Allow subs with attributes
Major speedups (3.5x..15x on a real-life
test file nph-proxy.pl)
Recognize "extproc " (OS/2)
case-folded and only at start
/x on s///x with empty replacement was
not recognized
Better comments
`cperl-after-block-p': Remarks on diff with `cperl-block-p'
Allow subs with attributes, labels
Do not confuse "else::foo" with "else"
Minor optimizations...
`cperl-after-expr-p': Try to allow '_' be non-word char
`cperl-fill-paragraph': Try to detect a major bug in Emacs
with `looking-at' inside `narrow' and bulk out if found
`cperl-imenu--create-perl-index': Updates for new
`cperl-imenu--function-name-regexp-perl'
`cperl-outline-level': Likewise
`cperl-init-faces': Allow multiline subroutine headers
and my/our declarations, and ones with comments
Allow subroutine attributes
`cperl-imenu-on-info': Better docstring.
`cperl-etags' Rudimentary support for attributes
Support for packages and "package;"
`cperl-add-tags-recurse-noxs': Better (?) docstring
`cperl-add-tags-recurse-noxs-fullpath': Likewise
`cperl-tags-hier-init': Misprint for `fboundp' fixed
`cperl-not-bad-style-regexp': Try to allow '_' be non-word char
`cperl-perldoc': Add autoload
`cperl-perldoc-at-point': Likewise
`cperl-here-doc-spell': New function
`cperl-pod-spell': Likewise
`cperl-map-pods-heres': Likewise
`cperl-get-here-doc-region': Likewise
`cperl-font-lock-fontify-region-function': Likewise (backward compatibility
for legacy `font-lock')
`cperl-font-lock-unfontify-region-function': Fix style
`cperl-fontify-syntaxically': Recognize and optimize away
deferred calls with no-change. Governed by `cperl-hook-after-change'
`cperl-fontify-update': Recognize that syntaxification region
can be larger than fontification one.
XXXX we leave `cperl-postpone' property, so this is quadratic...
`cperl-fontify-update-bad': Temporary placeholder until
it is clear how to implement `cperl-fontify-update'.
`cperl-time-fontification': New function
`attrib-group': New text attribute
`multiline': New value: `syntax-type' text attribute
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 11 Oct 2006 06:47:35 +0000 |
parents | 067115a6e738 |
children | 6d19c76d81c5 c5406394f567 |
rev | line source |
---|---|
2899 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
64889
e836425ee789
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
63583
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1999, 2002, 2003, 2004, |
68648
067115a6e738
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65700
diff
changeset
|
4 @c 2005, 2006 Free Software Foundation, Inc. |
2899 | 5 @c See the file elisp.texi for copying conditions. |
6 @setfilename ../info/errors | |
7 @node Standard Errors, Standard Buffer-Local Variables, GNU Emacs Internals, Top | |
8 @appendix Standard Errors | |
9 | |
10 Here is the complete list of the error symbols in standard Emacs, | |
11 grouped by concept. The list includes each symbol's message (on the | |
7600 | 12 @code{error-message} property of the symbol) and a cross reference to a |
2899 | 13 description of how the error can occur. |
14 | |
7600 | 15 Each error symbol has an @code{error-conditions} property that is a |
16 list of symbols. Normally this list includes the error symbol itself | |
2899 | 17 and the symbol @code{error}. Occasionally it includes additional |
7600 | 18 symbols, which are intermediate classifications, narrower than |
19 @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
|
20 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
|
21 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
|
22 conditions, that means it has none. |
2899 | 23 |
24 As a special exception, the error symbol @code{quit} does not have the | |
25 condition @code{error}, because quitting is not considered an error. | |
26 | |
27 @xref{Errors}, for an explanation of how errors are generated and | |
28 handled. | |
29 | |
30 @table @code | |
31 @item @var{symbol} | |
32 @var{string}; @var{reference}. | |
33 | |
34 @item error | |
35 @code{"error"}@* | |
36 @xref{Errors}. | |
37 | |
38 @item quit | |
39 @code{"Quit"}@* | |
40 @xref{Quitting}. | |
41 | |
42 @item args-out-of-range | |
43 @code{"Args out of range"}@* | |
65700
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
44 This happens when trying to access an element beyond the range of a |
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
45 sequence or buffer.@* |
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
46 @xref{Sequences Arrays Vectors}, @xref{Text}. |
2899 | 47 |
48 @item arith-error | |
49 @code{"Arithmetic error"}@* | |
65700
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
50 @xref{Arithmetic Operations}. |
2899 | 51 |
52 @item beginning-of-buffer | |
53 @code{"Beginning of buffer"}@* | |
65700
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
54 @xref{Character Motion}. |
2899 | 55 |
56 @item buffer-read-only | |
57 @code{"Buffer is read-only"}@* | |
58 @xref{Read Only Buffers}. | |
59 | |
26288 | 60 @item coding-system-error |
61 @code{"Invalid coding system"}@* | |
65700
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
62 @xref{Lisp and Coding Systems}. |
26288 | 63 |
12098 | 64 @item cyclic-function-indirection |
22267
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
65 @code{"Symbol's chain of function indirections\@* contains a loop"}@* |
12098 | 66 @xref{Function Indirection}. |
67 | |
54724
d2c60b264fa8
* variables.texi (Variable Aliases): Mention
Jesper Harder <harder@ifa.au.dk>
parents:
53454
diff
changeset
|
68 @item cyclic-variable-indirection |
63583
99e9892a51d9
Fix formatting ugliness.
Richard M. Stallman <rms@gnu.org>
parents:
54724
diff
changeset
|
69 @code{"Symbol's chain of variable indirections\@* contains a loop"}@* |
54724
d2c60b264fa8
* variables.texi (Variable Aliases): Mention
Jesper Harder <harder@ifa.au.dk>
parents:
53454
diff
changeset
|
70 @xref{Variable Aliases}. |
d2c60b264fa8
* variables.texi (Variable Aliases): Mention
Jesper Harder <harder@ifa.au.dk>
parents:
53454
diff
changeset
|
71 |
2899 | 72 @item end-of-buffer |
73 @code{"End of buffer"}@* | |
65700
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
74 @xref{Character Motion}. |
2899 | 75 |
76 @item end-of-file | |
77 @code{"End of file during parsing"}@* | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
78 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
|
79 because it pertains to the Lisp reader, not to file I/O.@* |
2899 | 80 @xref{Input Functions}. |
81 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
82 @item file-already-exists |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
83 This is a subcategory of @code{file-error}.@* |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
84 @xref{Writing to Files}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
85 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
86 @item file-date-error |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
87 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
|
88 @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
|
89 the output file.@* |
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
90 @xref{Changing Files}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
91 |
2899 | 92 @item file-error |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
93 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
|
94 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
|
95 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
|
96 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
|
97 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
|
98 the @code{error-message} property @emph{is} used.@* |
2899 | 99 @xref{Files}. |
100 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38581
diff
changeset
|
101 @item file-locked |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
102 This is a subcategory of @code{file-error}.@* |
2899 | 103 @xref{File Locks}. |
104 | |
105 @item file-supersession | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
106 This is a subcategory of @code{file-error}.@* |
7600 | 107 @xref{Modification Time}. |
2899 | 108 |
26288 | 109 @item ftp-error |
110 This is a subcategory of @code{file-error}, which results from problems | |
111 in accessing a remote file using ftp.@* | |
38581 | 112 @xref{Remote Files,,, emacs, The GNU Emacs Manual}. |
26288 | 113 |
2899 | 114 @item invalid-function |
115 @code{"Invalid function"}@* | |
65700
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
116 @xref{Function Indirection}. |
2899 | 117 |
118 @item invalid-read-syntax | |
119 @code{"Invalid read syntax"}@* | |
65700
fcbeba67c06c
* errors.texi (Standard Errors): Corrected xrefs.
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
120 @xref{Printed Representation}. |
2899 | 121 |
122 @item invalid-regexp | |
123 @code{"Invalid regexp"}@* | |
124 @xref{Regular Expressions}. | |
125 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
126 @item mark-inactive |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
127 @code{"The mark is not active now"}@* |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
128 @xref{The Mark}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
129 |
2899 | 130 @item no-catch |
131 @code{"No catch for tag"}@* | |
132 @xref{Catch and Throw}. | |
133 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
134 @item scan-error |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
135 @code{"Scan error"}@* |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
136 This happens when certain syntax-parsing functions |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
137 find invalid syntax or mismatched parentheses.@* |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
138 @xref{List Motion}, and @ref{Parsing Expressions}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
139 |
2899 | 140 @item search-failed |
141 @code{"Search failed"}@* | |
142 @xref{Searching and Matching}. | |
143 | |
144 @item setting-constant | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38581
diff
changeset
|
145 @code{"Attempt to set a constant symbol"}@* |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
146 The values of the symbols @code{nil} and @code{t}, |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
147 and any symbols that start with @samp{:}, |
2899 | 148 may not be changed.@* |
149 @xref{Constant Variables, , Variables that Never Change}. | |
150 | |
26288 | 151 @item text-read-only |
152 @code{"Text is read-only"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
153 This is a subcategory of @code{buffer-read-only}.@* |
26288 | 154 @xref{Special Properties}. |
155 | |
12098 | 156 @item undefined-color |
157 @code{"Undefined color"}@* | |
158 @xref{Color Names}. | |
159 | |
2899 | 160 @item void-function |
161 @code{"Symbol's function definition is void"}@* | |
162 @xref{Function Cells}. | |
163 | |
164 @item void-variable | |
165 @code{"Symbol's value as variable is void"}@* | |
166 @xref{Accessing Variables}. | |
167 | |
168 @item wrong-number-of-arguments | |
169 @code{"Wrong number of arguments"}@* | |
170 @xref{Classifying Lists}. | |
171 | |
172 @item wrong-type-argument | |
173 @code{"Wrong type argument"}@* | |
174 @xref{Type Predicates}. | |
175 @end table | |
12098 | 176 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
177 These kinds of error, which are classified as special cases of |
12098 | 178 @code{arith-error}, can occur on certain systems for invalid use of |
179 mathematical functions. | |
180 | |
181 @table @code | |
182 @item domain-error | |
183 @code{"Arithmetic domain error"}@* | |
184 @xref{Math Functions}. | |
185 | |
186 @item overflow-error | |
187 @code{"Arithmetic overflow error"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
188 This is a subcategory of @code{domain-error}.@* |
12098 | 189 @xref{Math Functions}. |
190 | |
191 @item range-error | |
192 @code{"Arithmetic range error"}@* | |
193 @xref{Math Functions}. | |
194 | |
195 @item singularity-error | |
196 @code{"Arithmetic singularity error"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
197 This is a subcategory of @code{domain-error}.@* |
12098 | 198 @xref{Math Functions}. |
199 | |
200 @item underflow-error | |
201 @code{"Arithmetic underflow error"}@* | |
53454
bedee14106b1
(Standard Errors): Various small corrections and additions.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
202 This is a subcategory of @code{domain-error}.@* |
12098 | 203 @xref{Math Functions}. |
204 @end table | |
52401 | 205 |
206 @ignore | |
207 arch-tag: 717c6048-5d9d-4c7d-9a62-df57390b6f19 | |
208 @end ignore |