diff options
| author | Luc Teirlinck | 2003-12-30 22:38:00 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-12-30 22:38:00 +0000 |
| commit | c1bbeff0a3938e5cb423f00d78638b979a53e8b2 (patch) | |
| tree | 4fd2d2779a865219204ea7780a27cfc98d271a6c /lispref/errors.texi | |
| parent | a8d6af5812cb14945ce8b3052e8f7f0a8bfec731 (diff) | |
| download | emacs-c1bbeff0a3938e5cb423f00d78638b979a53e8b2.tar.gz emacs-c1bbeff0a3938e5cb423f00d78638b979a53e8b2.zip | |
(Standard Errors): Various small corrections and additions.
Diffstat (limited to 'lispref/errors.texi')
| -rw-r--r-- | lispref/errors.texi | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/lispref/errors.texi b/lispref/errors.texi index 965090aeb13..daffbf308b3 100644 --- a/lispref/errors.texi +++ b/lispref/errors.texi | |||
| @@ -69,7 +69,7 @@ See @code{/} and @code{%} in @ref{Numbers}. | |||
| 69 | @item end-of-file | 69 | @item end-of-file |
| 70 | @code{"End of file during parsing"}@* | 70 | @code{"End of file during parsing"}@* |
| 71 | Note that this is not a subcategory of @code{file-error}, | 71 | Note that this is not a subcategory of @code{file-error}, |
| 72 | because it pertains to the Lisp reader, not to file I/O. | 72 | because it pertains to the Lisp reader, not to file I/O.@* |
| 73 | @xref{Input Functions}. | 73 | @xref{Input Functions}. |
| 74 | 74 | ||
| 75 | @item file-already-exists | 75 | @item file-already-exists |
| @@ -79,12 +79,16 @@ This is a subcategory of @code{file-error}.@* | |||
| 79 | @item file-date-error | 79 | @item file-date-error |
| 80 | This is a subcategory of @code{file-error}. It occurs when | 80 | This is a subcategory of @code{file-error}. It occurs when |
| 81 | @code{copy-file} tries and fails to set the last-modification time of | 81 | @code{copy-file} tries and fails to set the last-modification time of |
| 82 | the output file. @xref{Changing Files}. | 82 | the output file.@* |
| 83 | @xref{Changing Files}. | ||
| 83 | 84 | ||
| 84 | @item file-error | 85 | @item file-error |
| 85 | This error and its subcategories do not have error-strings, because the | 86 | We do not list the error-strings of this error and its subcategories, |
| 86 | error message is constructed from the data items alone when the error | 87 | because the error message is normally constructed from the data items |
| 87 | condition @code{file-error} is present.@* | 88 | alone when the error condition @code{file-error} is present. Thus, |
| 89 | the error-strings are not very relevant. However, these error symbols | ||
| 90 | do have @code{error-message} properties, and if no data is provided, | ||
| 91 | the @code{error-message} property @emph{is} used.@* | ||
| 88 | @xref{Files}. | 92 | @xref{Files}. |
| 89 | 93 | ||
| 90 | @item file-locked | 94 | @item file-locked |
| @@ -113,7 +117,7 @@ in accessing a remote file using ftp.@* | |||
| 113 | @xref{Regular Expressions}. | 117 | @xref{Regular Expressions}. |
| 114 | 118 | ||
| 115 | @item mark-inactive | 119 | @item mark-inactive |
| 116 | @code{"Mark inactive"}@* | 120 | @code{"The mark is not active now"}@* |
| 117 | @xref{The Mark}. | 121 | @xref{The Mark}. |
| 118 | 122 | ||
| 119 | @item no-catch | 123 | @item no-catch |
| @@ -139,6 +143,7 @@ may not be changed.@* | |||
| 139 | 143 | ||
| 140 | @item text-read-only | 144 | @item text-read-only |
| 141 | @code{"Text is read-only"}@* | 145 | @code{"Text is read-only"}@* |
| 146 | This is a subcategory of @code{buffer-read-only}.@* | ||
| 142 | @xref{Special Properties}. | 147 | @xref{Special Properties}. |
| 143 | 148 | ||
| 144 | @item undefined-color | 149 | @item undefined-color |
| @@ -173,6 +178,7 @@ mathematical functions. | |||
| 173 | 178 | ||
| 174 | @item overflow-error | 179 | @item overflow-error |
| 175 | @code{"Arithmetic overflow error"}@* | 180 | @code{"Arithmetic overflow error"}@* |
| 181 | This is a subcategory of @code{domain-error}.@* | ||
| 176 | @xref{Math Functions}. | 182 | @xref{Math Functions}. |
| 177 | 183 | ||
| 178 | @item range-error | 184 | @item range-error |
| @@ -181,10 +187,12 @@ mathematical functions. | |||
| 181 | 187 | ||
| 182 | @item singularity-error | 188 | @item singularity-error |
| 183 | @code{"Arithmetic singularity error"}@* | 189 | @code{"Arithmetic singularity error"}@* |
| 190 | This is a subcategory of @code{domain-error}.@* | ||
| 184 | @xref{Math Functions}. | 191 | @xref{Math Functions}. |
| 185 | 192 | ||
| 186 | @item underflow-error | 193 | @item underflow-error |
| 187 | @code{"Arithmetic underflow error"}@* | 194 | @code{"Arithmetic underflow error"}@* |
| 195 | This is a subcategory of @code{domain-error}.@* | ||
| 188 | @xref{Math Functions}. | 196 | @xref{Math Functions}. |
| 189 | @end table | 197 | @end table |
| 190 | 198 | ||