emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112202: emacs-lisp/crm.el (completin


From: Roland Winkler
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112202: emacs-lisp/crm.el (completing-read-multiple): Doc fix.
Date: Sun, 31 Mar 2013 10:19:19 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112202
committer: Roland Winkler <address@hidden>
branch nick: trunk
timestamp: Sun 2013-03-31 10:19:19 -0500
message:
  emacs-lisp/crm.el (completing-read-multiple): Doc fix.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/crm.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-03-31 13:34:35 +0000
+++ b/lisp/ChangeLog    2013-03-31 15:19:19 +0000
@@ -1,3 +1,7 @@
+2013-03-31  Roland Winkler  <address@hidden>
+
+       * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
+
 2013-03-31  Stefan Monnier  <address@hidden>
 
        * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).

=== modified file 'lisp/emacs-lisp/crm.el'
--- a/lisp/emacs-lisp/crm.el    2013-03-17 10:33:57 +0000
+++ b/lisp/emacs-lisp/crm.el    2013-03-31 15:19:19 +0000
@@ -263,7 +263,8 @@
 contents of the minibuffer are 'alice,bob,eve' and point is between
 '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:
 PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF, and
@@ -287,7 +288,7 @@
                       prompt initial-input map
                       nil hist def inherit-input-method)))
          (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)))
     (remove-hook 'choose-completion-string-functions
                 'crm--choose-completion-string)))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]