diff options
| author | Stefan Monnier | 2010-08-02 12:35:34 +0200 |
|---|---|---|
| committer | Stefan Monnier | 2010-08-02 12:35:34 +0200 |
| commit | ee301a7a199b30502c45bc62a29a8523b3b03765 (patch) | |
| tree | 6841b2661e507c061b553dbc9a7e81a17e7406d6 /doc | |
| parent | f63a7652ef45f8e0e413c61cecbbc0db77114e83 (diff) | |
| download | emacs-ee301a7a199b30502c45bc62a29a8523b3b03765.tar.gz emacs-ee301a7a199b30502c45bc62a29a8523b3b03765.zip | |
* lispref/control.texi (Handling Errors) <error-message-string>: Fix arg name.
Fixes: debbugs:6770
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/control.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index de2ec6a1412..4559864c23f 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-08-02 Christoph <cschol2112@googlemail.com> | ||
| 2 | |||
| 3 | * control.texi (Handling Errors) <error-message-string>: Fix arg name. | ||
| 4 | |||
| 1 | 2010-07-29 Juanma Barranquero <lekktu@gmail.com> | 5 | 2010-07-29 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * modes.texi (Defining Minor Modes): Use C-backspace, not C-delete. | 7 | * modes.texi (Defining Minor Modes): Use C-backspace, not C-delete. |
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 1c4447e9eb5..16564677f32 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi | |||
| @@ -1039,7 +1039,7 @@ to @code{condition-case} whose error condition you want to re-throw. | |||
| 1039 | @xref{Definition of signal}. | 1039 | @xref{Definition of signal}. |
| 1040 | @end defspec | 1040 | @end defspec |
| 1041 | 1041 | ||
| 1042 | @defun error-message-string error-description | 1042 | @defun error-message-string error-descriptor |
| 1043 | This function returns the error message string for a given error | 1043 | This function returns the error message string for a given error |
| 1044 | descriptor. It is useful if you want to handle an error by printing the | 1044 | descriptor. It is useful if you want to handle an error by printing the |
| 1045 | usual error message for that error. @xref{Definition of signal}. | 1045 | usual error message for that error. @xref{Definition of signal}. |