mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
; (crm-change-separator): Enable recursive minibuffers.
This commit is contained in:
parent
dc4ce1052b
commit
bc5c729d69
1 changed files with 4 additions and 3 deletions
|
|
@ -183,9 +183,10 @@ old `crm-separator' in the current minibuffer contents with REP.
|
|||
Interactively, prompt for SEP. With a prefix argument, prompt
|
||||
for REP as well."
|
||||
(interactive
|
||||
(let ((sep (read-regexp
|
||||
(format-prompt "New separator" crm-current-separator)
|
||||
crm-current-separator)))
|
||||
(let* ((enable-recursive-minibuffers t)
|
||||
(sep (read-regexp
|
||||
(format-prompt "New separator" crm-current-separator)
|
||||
crm-current-separator)))
|
||||
(list sep
|
||||
(when current-prefix-arg
|
||||
(read-string-matching sep "Replace existing separators with: "))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue