diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-06-06 19:21:15 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-06-06 19:21:15 +0000 |
commit | bfe721d172158ccdcd925e55f5a658421ca0d4fe (patch) | |
tree | 2d2882c335a04acb20662d2b5aa6dc2246a6f0aa /lispref/errors.texi | |
parent | 5c4276bc6de449d416cc83dd034892da66badcb7 (diff) | |
download | emacs-bfe721d172158ccdcd925e55f5a658421ca0d4fe.tar.gz |
*** 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}. @code{"Buffer is read-only"}@* @xref{Read Only Buffers}. +@item cyclic-function-indirection +@code{"Symbol's chain of function indirections contains a loop"}@* +@xref{Function Indirection}. + @item end-of-buffer @code{"End of buffer"}@* @xref{Motion}. @@ -105,6 +109,10 @@ The values of the symbols @code{nil} and @code{t} may not be changed.@* @xref{Constant Variables, , Variables that Never Change}. +@item undefined-color +@code{"Undefined color"}@* +@xref{Color Names}. + @item void-function @code{"Symbol's function definition is void"}@* @xref{Function Cells}. @@ -121,3 +129,29 @@ may not be changed.@* @code{"Wrong type argument"}@* @xref{Type Predicates}. @end table + + These error types, which are all classified as special cases of +@code{arith-error}, can occur on certain systems for invalid use of +mathematical functions. + +@table @code +@item domain-error +@code{"Arithmetic domain error"}@* +@xref{Math Functions}. + +@item overflow-error +@code{"Arithmetic overflow error"}@* +@xref{Math Functions}. + +@item range-error +@code{"Arithmetic range error"}@* +@xref{Math Functions}. + +@item singularity-error +@code{"Arithmetic singularity error"}@* +@xref{Math Functions}. + +@item underflow-error +@code{"Arithmetic underflow error"}@* +@xref{Math Functions}. +@end table |