aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/errors.texi
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-06-06 19:21:15 +0000
committerKarl Heuer <[email protected]>1995-06-06 19:21:15 +0000
commitbfe721d172158ccdcd925e55f5a658421ca0d4fe (patch)
tree2d2882c335a04acb20662d2b5aa6dc2246a6f0aa /lispref/errors.texi
parent5c4276bc6de449d416cc83dd034892da66badcb7 (diff)
*** empty log message ***
Diffstat (limited to 'lispref/errors.texi')
-rw-r--r--lispref/errors.texi34
1 files changed, 34 insertions, 0 deletions
diff --git a/lispref/errors.texi b/lispref/errors.texi
index 8cedced5c3..3629001228 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