emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116570: * emacs-lisp/crm.el (completing-read-multip


From: Glenn Morris
Subject: [Emacs-diffs] trunk r116570: * emacs-lisp/crm.el (completing-read-multiple): Empower help-enable-auto-load.
Date: Thu, 27 Feb 2014 04:17:47 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116570
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2014-02-26 20:17:40 -0800
message:
  * emacs-lisp/crm.el (completing-read-multiple): Empower help-enable-auto-load.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/crm.el         crm.el-20091113204419-o5vbwnq5f7feedwu-1803
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-02-26 19:45:18 +0000
+++ b/lisp/ChangeLog    2014-02-27 04:17:40 +0000
@@ -1,3 +1,8 @@
+2014-02-27  Glenn Morris  <address@hidden>
+
+       * emacs-lisp/crm.el (completing-read-multiple):
+       Empower help-enable-auto-load.
+
 2014-02-26  Glenn Morris  <address@hidden>
 
        * startup.el (command-line): Don't init the tty in daemon mode.

=== modified file 'lisp/emacs-lisp/crm.el'
--- a/lisp/emacs-lisp/crm.el    2014-01-01 07:43:34 +0000
+++ b/lisp/emacs-lisp/crm.el    2014-02-27 04:17:40 +0000
@@ -240,6 +240,8 @@
     t))
 
 ;; superemulates behavior of completing_read in src/minibuf.c
+;; Use \\<crm-local-completion-map> so that help-enable-auto-load can
+;; do its thing.  Any keymap that is defined will do.
 ;;;###autoload
 (defun completing-read-multiple
   (prompt table &optional predicate require-match initial-input
@@ -247,15 +249,15 @@
   "Read multiple strings in the minibuffer, with completion.
 By using this functionality, a user may specify multiple strings at a
 single prompt, optionally using completion.
-
+\\<crm-local-completion-map>
 Multiple strings are specified by separating each of the strings with
 a prespecified separator regexp.  For example, if the separator
 regexp is \",\", the strings 'alice', 'bob', and 'eve' would be
 specified as 'alice,bob,eve'.
 
 The default value for the separator regexp is the value of
-`crm-default-separator' (comma).  The separator regexp may be
-changed by modifying the value of `crm-separator'.
+`crm-default-separator'.  You can change the separator regexp by
+modifying the value of `crm-separator'.
 
 Contiguous strings of non-separator-characters are referred to as
 'elements'.  In the aforementioned example, the elements are: 'alice',


reply via email to

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