aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/shell.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/shell.el')
-rw-r--r--lisp/shell.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index fcffc2317d5..ea89ce765c3 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -151,12 +151,14 @@ This is a fine thing to set in your `.emacs' file."
151 :type '(repeat (string :tag "Suffix")) 151 :type '(repeat (string :tag "Suffix"))
152 :group 'shell) 152 :group 'shell)
153 153
154(defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;) 154(defcustom shell-delimiter-argument-list nil ; '(?\| ?& ?< ?> ?\( ?\) ?\;)
155 "List of characters to recognize as separate arguments. 155 "List of characters to recognize as separate arguments.
156This variable is used to initialize `comint-delimiter-argument-list' in the 156This variable is used to initialize `comint-delimiter-argument-list' in the
157shell buffer. The value may depend on the operating system or shell. 157shell buffer. The value may depend on the operating system or shell."
158 158 :type '(choice (const nil)
159This is a fine thing to set in your `.emacs' file.") 159 (repeat :tag "List of characters" character))
160 :version "24.1" ; changed to nil (bug#8027)
161 :group 'shell)
160 162
161(defvar shell-file-name-chars 163(defvar shell-file-name-chars
162 (if (memq system-type '(ms-dos windows-nt cygwin)) 164 (if (memq system-type '(ms-dos windows-nt cygwin))