Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b77cfcd7
Commit
b77cfcd7
authored
Feb 26, 2014
by
Glenn Morris
Browse files
* emacs-lisp/crm.el (completing-read-multiple): Empower help-enable-auto-load.
parent
3b48a331
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/crm.el
lisp/emacs-lisp/crm.el
+5
-3
No files found.
lisp/ChangeLog
View file @
b77cfcd7
2014-02-27 Glenn Morris <rgm@gnu.org>
* emacs-lisp/crm.el (completing-read-multiple):
Empower help-enable-auto-load.
2014-02-26 Glenn Morris <rgm@gnu.org>
* startup.el (command-line): Don't init the tty in daemon mode.
...
...
lisp/emacs-lisp/crm.el
View file @
b77cfcd7
...
...
@@ -240,6 +240,8 @@ exiting the minibuffer."
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 @@ exiting the minibuffer."
"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). T
he separator regexp
may be
changed by
modifying the value of `crm-separator'.
`crm-default-separator'
. You can change t
he 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',
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment