aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-10-12 22:45:27 +0000
committerGlenn Morris2008-10-12 22:45:27 +0000
commit2e7bd464d8495bf57a8b70819c665fec20d1312b (patch)
tree31aab5c759bb18a0b364258042db77b670df53ca
parent65b7cb2c90bcab32cad51617e4ce15cc712f4f3a (diff)
downloademacs-2e7bd464d8495bf57a8b70819c665fec20d1312b.tar.gz
emacs-2e7bd464d8495bf57a8b70819c665fec20d1312b.zip
(shell-delimiter-argument-list, shell-file-name-chars)
(shell-file-name-quote-list): Declare.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el4
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bab7c350720..fdaf3ed9413 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-10-12 Glenn Morris <rgm@gnu.org>
2
3 * simple.el (shell-delimiter-argument-list, shell-file-name-chars)
4 (shell-file-name-quote-list): Declare.
5
12008-10-12 Michael Albinus <michael.albinus@gmx.de> 62008-10-12 Michael Albinus <michael.albinus@gmx.de>
2 7
3 * net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst. 8 * net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst.
diff --git a/lisp/simple.el b/lisp/simple.el
index 19efa5a94c2..5f2ef040272 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1994,6 +1994,10 @@ to the end of the list of defaults just after the default value."
1994 (append minibuffer-default commands) 1994 (append minibuffer-default commands)
1995 (cons minibuffer-default commands)))) 1995 (cons minibuffer-default commands))))
1996 1996
1997(defvar shell-delimiter-argument-list)
1998(defvar shell-file-name-chars)
1999(defvar shell-file-name-quote-list)
2000
1997(defun minibuffer-complete-shell-command () 2001(defun minibuffer-complete-shell-command ()
1998 "Dynamically complete shell command at point." 2002 "Dynamically complete shell command at point."
1999 (interactive) 2003 (interactive)