comint-delimiter-argument-list, comint-file-name-chars and
comint-file-name-quote-list like shell-mode.
+2008-10-10 Andreas Schwab <schwab@suse.de>
+
+ * simple.el (minibuffer-complete-shell-command): Bind
+ comint-delimiter-argument-list, comint-file-name-chars and
+ comint-file-name-quote-list like shell-mode.
+
2008-10-10 Martin Rudalics <rudalics@gmx.at>
* window.el (pop-to-buffer): Fix misplacement of arg norecord in
"Dynamically complete shell command at point."
(interactive)
(require 'shell)
- (run-hook-with-args-until-success 'shell-dynamic-complete-functions))
+ (let ((comint-delimiter-argument-list shell-delimiter-argument-list)
+ (comint-file-name-chars shell-file-name-chars)
+ (comint-file-name-quote-list shell-file-name-quote-list))
+ (run-hook-with-args-until-success 'shell-dynamic-complete-functions)))
(defvar minibuffer-local-shell-command-map
(let ((map (make-sparse-keymap)))