diff options
| author | Karl Heuer | 1995-06-06 19:21:15 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-06-06 19:21:15 +0000 |
| commit | bfe721d172158ccdcd925e55f5a658421ca0d4fe (patch) | |
| tree | 2d2882c335a04acb20662d2b5aa6dc2246a6f0aa /lispref/errors.texi | |
| parent | 5c4276bc6de449d416cc83dd034892da66badcb7 (diff) | |
| download | emacs-bfe721d172158ccdcd925e55f5a658421ca0d4fe.tar.gz emacs-bfe721d172158ccdcd925e55f5a658421ca0d4fe.zip | |
*** empty log message ***
Diffstat (limited to 'lispref/errors.texi')
| -rw-r--r-- | lispref/errors.texi | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lispref/errors.texi b/lispref/errors.texi index 8cedced5c32..36290012285 100644 --- a/lispref/errors.texi +++ b/lispref/errors.texi | |||
| @@ -52,6 +52,10 @@ See @code{/} and @code{%} in @ref{Numbers}. | |||
| 52 | @code{"Buffer is read-only"}@* | 52 | @code{"Buffer is read-only"}@* |
| 53 | @xref{Read Only Buffers}. | 53 | @xref{Read Only Buffers}. |
| 54 | 54 | ||
| 55 | @item cyclic-function-indirection | ||
| 56 | @code{"Symbol's chain of function indirections contains a loop"}@* | ||
| 57 | @xref{Function Indirection}. | ||
| 58 | |||
| 55 | @item end-of-buffer | 59 | @item end-of-buffer |
| 56 | @code{"End of buffer"}@* | 60 | @code{"End of buffer"}@* |
| 57 | @xref{Motion}. | 61 | @xref{Motion}. |
| @@ -105,6 +109,10 @@ The values of the symbols @code{nil} and @code{t} | |||
| 105 | may not be changed.@* | 109 | may not be changed.@* |
| 106 | @xref{Constant Variables, , Variables that Never Change}. | 110 | @xref{Constant Variables, , Variables that Never Change}. |
| 107 | 111 | ||
| 112 | @item undefined-color | ||
| 113 | @code{"Undefined color"}@* | ||
| 114 | @xref{Color Names}. | ||
| 115 | |||
| 108 | @item void-function | 116 | @item void-function |
| 109 | @code{"Symbol's function definition is void"}@* | 117 | @code{"Symbol's function definition is void"}@* |
| 110 | @xref{Function Cells}. | 118 | @xref{Function Cells}. |
| @@ -121,3 +129,29 @@ may not be changed.@* | |||
| 121 | @code{"Wrong type argument"}@* | 129 | @code{"Wrong type argument"}@* |
| 122 | @xref{Type Predicates}. | 130 | @xref{Type Predicates}. |
| 123 | @end table | 131 | @end table |
| 132 | |||
| 133 | These error types, which are all classified as special cases of | ||
| 134 | @code{arith-error}, can occur on certain systems for invalid use of | ||
| 135 | mathematical functions. | ||
| 136 | |||
| 137 | @table @code | ||
| 138 | @item domain-error | ||
| 139 | @code{"Arithmetic domain error"}@* | ||
| 140 | @xref{Math Functions}. | ||
| 141 | |||
| 142 | @item overflow-error | ||
| 143 | @code{"Arithmetic overflow error"}@* | ||
| 144 | @xref{Math Functions}. | ||
| 145 | |||
| 146 | @item range-error | ||
| 147 | @code{"Arithmetic range error"}@* | ||
| 148 | @xref{Math Functions}. | ||
| 149 | |||
| 150 | @item singularity-error | ||
| 151 | @code{"Arithmetic singularity error"}@* | ||
| 152 | @xref{Math Functions}. | ||
| 153 | |||
| 154 | @item underflow-error | ||
| 155 | @code{"Arithmetic underflow error"}@* | ||
| 156 | @xref{Math Functions}. | ||
| 157 | @end table | ||