diff options
| author | Glenn Morris | 2012-04-18 23:04:05 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-04-18 23:04:05 -0700 |
| commit | c0ea08d2d1420d69b7d0275afcb47b36864b0da4 (patch) | |
| tree | 0f99d2b0626be515431e950692cca5482a817ceb /lisp | |
| parent | 78c1f4901d5f98f5dc1a05f521a409b753c30548 (diff) | |
| download | emacs-c0ea08d2d1420d69b7d0275afcb47b36864b0da4.tar.gz emacs-c0ea08d2d1420d69b7d0275afcb47b36864b0da4.zip | |
More small edits for doc/lispref/minibuf.texi
* doc/lispref/minibuf.texi (Object from Minibuffer):
Remove overly pedantic paragraph.
(Minibuffer History): Copyedits. Add face-name-history.
(Initial Input, Yes-or-No Queries, Multiple Queries)
(Minibuffer Windows, Minibuffer Misc): Copyedits.
(Yes-or-No Queries): Tweak example.
(Minibuffer Commands): Add next-complete-history-element.
(Minibuffer Misc): Mention minibuffer-message-timeout, and
minibuffer-inactive-mode.
* doc/lispref/minibuf.texi (Minibuffers):
* doc/lispref/elisp.texi, doc/lispref/vol1.texi, doc/lispref/vol2.texi:
Fix minibuffer subsection order.
* lisp/subr.el: Comment.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 87b98988525..3b120e6ff6a 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2335,6 +2335,8 @@ is nil and `use-dialog-box' is non-nil." | |||
| 2335 | (discard-input)))) | 2335 | (discard-input)))) |
| 2336 | (let ((ret (eq answer 'act))) | 2336 | (let ((ret (eq answer 'act))) |
| 2337 | (unless noninteractive | 2337 | (unless noninteractive |
| 2338 | ;; FIXME this prints one too many spaces, since prompt | ||
| 2339 | ;; already ends in a space. Eg "... (y or n) y". | ||
| 2338 | (message "%s %s" prompt (if ret "y" "n"))) | 2340 | (message "%s %s" prompt (if ret "y" "n"))) |
| 2339 | ret))) | 2341 | ret))) |
| 2340 | 2342 | ||