diff options
| author | Dave Love | 1998-09-14 17:14:40 +0000 |
|---|---|---|
| committer | Dave Love | 1998-09-14 17:14:40 +0000 |
| commit | c733d4ce34a2d37ad135c39e7b40a5f1bf998d9a (patch) | |
| tree | e00b3a00207fee91bc28dce36630eefdd98a515a | |
| parent | b51900451a3b1148de37727c7c5f18b9411a9566 (diff) | |
| download | emacs-c733d4ce34a2d37ad135c39e7b40a5f1bf998d9a.tar.gz emacs-c733d4ce34a2d37ad135c39e7b40a5f1bf998d9a.zip | |
(map-y-or-n-p): Mention RET, `q' in the help text.
| -rw-r--r-- | lisp/map-ynp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el index ce50e98c6c8..d773cb79ab7 100644 --- a/lisp/map-ynp.el +++ b/lisp/map-ynp.el | |||
| @@ -195,9 +195,11 @@ Returns the number of actions taken." | |||
| 195 | (concat | 195 | (concat |
| 196 | (format "Type SPC or `y' to %s the current %s; | 196 | (format "Type SPC or `y' to %s the current %s; |
| 197 | DEL or `n' to skip the current %s; | 197 | DEL or `n' to skip the current %s; |
| 198 | RET or `q' to exit (skip all remaining %s); | ||
| 198 | ! to %s all remaining %s; | 199 | ! to %s all remaining %s; |
| 199 | ESC or `q' to exit;\n" | 200 | ESC or `q' to exit;\n" |
| 200 | action object object action objects) | 201 | action object object objects action |
| 202 | objects) | ||
| 201 | (mapconcat (function | 203 | (mapconcat (function |
| 202 | (lambda (elt) | 204 | (lambda (elt) |
| 203 | (format "%c to %s" | 205 | (format "%c to %s" |