summaryrefslogtreecommitdiff
path: root/lispref/errors.texi
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-06-06 19:21:15 +0000
committerKarl Heuer <kwzh@gnu.org>1995-06-06 19:21:15 +0000
commitef14c259334e1f024b445e3b015bb8015e3a1e96 (patch)
treefa6c80844041fb38b1d35d5ec7dd8c440850f126 /lispref/errors.texi
parent127c32406691496e3e252c05bd6b50ebcae80c0e (diff)
downloademacs-ef14c259334e1f024b445e3b015bb8015e3a1e96.tar.gz
*** 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 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