diff options
| author | Lars Ingebrigtsen | 2021-10-09 15:04:11 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-10-09 15:04:18 +0200 |
| commit | ec9f25bd356c7c81d94c78f11100b97d6d52ce97 (patch) | |
| tree | 716efec61685c5a480055dd706a9c2bb5de3f532 | |
| parent | 00eb21c8979f4e53345fdc021d32307d102afda9 (diff) | |
| download | emacs-ec9f25bd356c7c81d94c78f11100b97d6d52ce97.tar.gz emacs-ec9f25bd356c7c81d94c78f11100b97d6d52ce97.zip | |
Mention that RET means "yes" in y-or-n-p
* lisp/subr.el (y-or-n-p): Mention that RET also means yes (bug#51101).
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index f8f446c6a92..78767b259d4 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -3218,7 +3218,7 @@ PROMPT is also updated to show `help-char' like \"(y, n or C-h) \", | |||
| 3218 | where `help-char' is automatically bound to `help-form-show'. | 3218 | where `help-char' is automatically bound to `help-form-show'. |
| 3219 | 3219 | ||
| 3220 | No confirmation of the answer is requested; a single character is | 3220 | No confirmation of the answer is requested; a single character is |
| 3221 | enough. SPC also means yes, and DEL means no. | 3221 | enough. RET and SPC also means yes, and DEL means no. |
| 3222 | 3222 | ||
| 3223 | To be precise, this function translates user input into responses | 3223 | To be precise, this function translates user input into responses |
| 3224 | by consulting the bindings in `query-replace-map'; see the | 3224 | by consulting the bindings in `query-replace-map'; see the |