emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103311: shell.el fix for bug#8027 an


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103311: shell.el fix for bug#8027 and friends.
Date: Wed, 16 Feb 2011 21:02:02 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103311
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2011-02-16 21:02:02 -0800
message:
  shell.el fix for bug#8027 and friends.
  
  * lisp/shell.el (shell-delimiter-argument-list): Set it to nil.
  
  This is a test, to see if causes any issues.
modified:
  lisp/ChangeLog
  lisp/shell.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-02-17 04:57:22 +0000
+++ b/lisp/ChangeLog    2011-02-17 05:02:02 +0000
@@ -1,5 +1,7 @@
 2011-02-17  Glenn Morris  <address@hidden>
 
+       * 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)
 

=== modified file 'lisp/shell.el'
--- a/lisp/shell.el     2011-01-26 08:36:39 +0000
+++ b/lisp/shell.el     2011-02-17 05:02:02 +0000
@@ -151,12 +151,14 @@
   :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))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]