]> git.eshelyaron.com Git - emacs.git/commitdiff
shell.el fix for bug#8027 and friends.
authorGlenn Morris <rgm@gnu.org>
Thu, 17 Feb 2011 05:02:02 +0000 (21:02 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 17 Feb 2011 05:02:02 +0000 (21:02 -0800)
* lisp/shell.el (shell-delimiter-argument-list): Set it to nil.

This is a test, to see if causes any issues.

lisp/ChangeLog
lisp/shell.el

index 638b7a2d442a670f0e92b94521160b5093de1911..ca4fa798d15c92870d0a8f872695330420d871ad 100644 (file)
@@ -1,5 +1,7 @@
 2011-02-17  Glenn Morris  <rgm@gnu.org>
 
+       * shell.el (shell-delimiter-argument-list): Set it to nil.  (Bug#8027)
+
        * vc/vc.el (vc-default-previous-version):
        Remove alias that points nowhere.  (Bug#4496)
 
index fcffc2317d52a5e0181a53f2a2f21fdc14e1b382..ea89ce765c3e3fbb08f836744b6c974a856f6980 100644 (file)
@@ -151,12 +151,14 @@ This is a fine thing to set in your `.emacs' file."
   :type '(repeat (string :tag "Suffix"))
   :group 'shell)
 
-(defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
+(defcustom shell-delimiter-argument-list nil ; '(?\| ?& ?< ?> ?\( ?\) ?\;)
   "List of characters to recognize as separate arguments.
 This variable is used to initialize `comint-delimiter-argument-list' in the
-shell buffer.  The value may depend on the operating system or shell.
-
-This is a fine thing to set in your `.emacs' file.")
+shell buffer.  The value may depend on the operating system or shell."
+  :type '(choice (const nil)
+                (repeat :tag "List of characters" character))
+  :version "24.1"                      ; changed to nil (bug#8027)
+  :group 'shell)
 
 (defvar shell-file-name-chars
   (if (memq system-type '(ms-dos windows-nt cygwin))