aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2008-10-10 17:30:58 +0000
committerAndreas Schwab2008-10-10 17:30:58 +0000
commit79ccd1b8163a64b94afb922809f0bbfaa0d9446d (patch)
treeeb858d2452206dbf43845066f1c53a290df7ac8c
parente6001b58231de00b00e19f9e11d3cf2290ab0138 (diff)
downloademacs-79ccd1b8163a64b94afb922809f0bbfaa0d9446d.tar.gz
emacs-79ccd1b8163a64b94afb922809f0bbfaa0d9446d.zip
(minibuffer-complete-shell-command): Bind
comint-delimiter-argument-list, comint-file-name-chars and comint-file-name-quote-list like shell-mode.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/simple.el5
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index edddb877e72..36c296d8daa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12008-10-10 Andreas Schwab <schwab@suse.de>
2
3 * simple.el (minibuffer-complete-shell-command): Bind
4 comint-delimiter-argument-list, comint-file-name-chars and
5 comint-file-name-quote-list like shell-mode.
6
12008-10-10 Martin Rudalics <rudalics@gmx.at> 72008-10-10 Martin Rudalics <rudalics@gmx.at>
2 8
3 * window.el (pop-to-buffer): Fix misplacement of arg norecord in 9 * window.el (pop-to-buffer): Fix misplacement of arg norecord in
diff --git a/lisp/simple.el b/lisp/simple.el
index 3e38d59a692..19efa5a94c2 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1998,7 +1998,10 @@ to the end of the list of defaults just after the default value."
1998 "Dynamically complete shell command at point." 1998 "Dynamically complete shell command at point."
1999 (interactive) 1999 (interactive)
2000 (require 'shell) 2000 (require 'shell)
2001 (run-hook-with-args-until-success 'shell-dynamic-complete-functions)) 2001 (let ((comint-delimiter-argument-list shell-delimiter-argument-list)
2002 (comint-file-name-chars shell-file-name-chars)
2003 (comint-file-name-quote-list shell-file-name-quote-list))
2004 (run-hook-with-args-until-success 'shell-dynamic-complete-functions)))
2002 2005
2003(defvar minibuffer-local-shell-command-map 2006(defvar minibuffer-local-shell-command-map
2004 (let ((map (make-sparse-keymap))) 2007 (let ((map (make-sparse-keymap)))