mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-08 07:20:28 -08:00
emacs-lisp/crm.el (completing-read-multiple): Doc fix.
This commit is contained in:
parent
2bd8a4a867
commit
a77e2924c9
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
2013-03-31 Roland Winkler <winkler@gnu.org>
|
||||||
|
|
||||||
|
* emacs-lisp/crm.el (completing-read-multiple): Doc fix.
|
||||||
|
|
||||||
2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
|
2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
* hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
|
* hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
|
||||||
|
|
|
||||||
|
|
@ -263,7 +263,8 @@ Completion is available on a per-element basis. For example, if the
|
||||||
contents of the minibuffer are 'alice,bob,eve' and point is between
|
contents of the minibuffer are 'alice,bob,eve' and point is between
|
||||||
'l' and 'i', pressing TAB operates on the element 'alice'.
|
'l' and 'i', pressing TAB operates on the element 'alice'.
|
||||||
|
|
||||||
The return value of this function is a list of the read strings.
|
The return value of this function is a list of the read strings
|
||||||
|
with empty strings removed.
|
||||||
|
|
||||||
See the documentation for `completing-read' for details on the arguments:
|
See the documentation for `completing-read' for details on the arguments:
|
||||||
PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF, and
|
PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF, and
|
||||||
|
|
@ -287,7 +288,7 @@ INHERIT-INPUT-METHOD."
|
||||||
prompt initial-input map
|
prompt initial-input map
|
||||||
nil hist def inherit-input-method)))
|
nil hist def inherit-input-method)))
|
||||||
(and def (string-equal input "") (setq input def))
|
(and def (string-equal input "") (setq input def))
|
||||||
;; Ignore empty strings in the list of return values.
|
;; Remove empty strings in the list of read strings.
|
||||||
(split-string input crm-separator t)))
|
(split-string input crm-separator t)))
|
||||||
(remove-hook 'choose-completion-string-functions
|
(remove-hook 'choose-completion-string-functions
|
||||||
'crm--choose-completion-string)))
|
'crm--choose-completion-string)))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue