diff options
| author | Juanma Barranquero | 2014-02-08 05:02:16 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-02-08 05:02:16 +0100 |
| commit | 85ade7eee673dc1df4483f925ff748a10e903353 (patch) | |
| tree | ac93738918e35be6d8940cfa76d7d58070d47cc3 | |
| parent | f7a17bb38a72e64128850c0b67f7421bd50c7a79 (diff) | |
| download | emacs-85ade7eee673dc1df4483f925ff748a10e903353.tar.gz emacs-85ade7eee673dc1df4483f925ff748a10e903353.zip | |
* src/keyboard.c (Frecursive_edit): Fix typo in docstring.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/keyboard.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1615e194346..51f7bf08e36 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-02-08 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * keyboard.c (Frecursive_edit): Fix typo in docstring. | ||
| 4 | |||
| 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> | 5 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 6 | ||
| 3 | * xdisp.c (syms_of_xdisp): Doc clarification (bug#15657). | 7 | * xdisp.c (syms_of_xdisp): Doc clarification (bug#15657). |
diff --git a/src/keyboard.c b/src/keyboard.c index 52bb50800df..9dcb58ae66c 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -812,7 +812,7 @@ instance `(throw 'exit nil)'. | |||
| 812 | If you throw a value other than t, `recursive-edit' returns normally | 812 | If you throw a value other than t, `recursive-edit' returns normally |
| 813 | to the function that called it. Throwing a t value causes | 813 | to the function that called it. Throwing a t value causes |
| 814 | `recursive-edit' to quit, so that control returns to the command loop | 814 | `recursive-edit' to quit, so that control returns to the command loop |
| 815 | one level up | 815 | one level up. |
| 816 | 816 | ||
| 817 | This function is called by the editor initialization to begin editing. */) | 817 | This function is called by the editor initialization to begin editing. */) |
| 818 | (void) | 818 | (void) |