diff options
| author | Paul Eggert | 2015-09-01 06:21:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-01 06:23:21 -0700 |
| commit | a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch) | |
| tree | 03058460c897b868eaf281bcf984a3a687667ae3 /src/keyboard.c | |
| parent | 447e5890a81f098881aecc099852ace466ef5925 (diff) | |
| download | emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.tar.gz emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.zip | |
Docstring fixes re quotes in C code
Fix some docstring quoting problems, mostly by escaping apostrophe.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index dab32b12826..d7a533b80b7 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -754,7 +754,7 @@ force_auto_save_soon (void) | |||
| 754 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | 754 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", |
| 755 | doc: /* Invoke the editor command loop recursively. | 755 | doc: /* Invoke the editor command loop recursively. |
| 756 | To get out of the recursive edit, a command can throw to ‘exit’ -- for | 756 | To get out of the recursive edit, a command can throw to ‘exit’ -- for |
| 757 | instance ‘(throw 'exit nil)’. | 757 | instance ‘(throw \\='exit nil)’. |
| 758 | If you throw a value other than t, ‘recursive-edit’ returns normally | 758 | If you throw a value other than t, ‘recursive-edit’ returns normally |
| 759 | to the function that called it. Throwing a t value causes | 759 | to the function that called it. Throwing a t value causes |
| 760 | ‘recursive-edit’ to quit, so that control returns to the command loop | 760 | ‘recursive-edit’ to quit, so that control returns to the command loop |