* lisp/shell.el (shell-delimiter-argument-list): Revert 2011-02-17 change.
This commit is contained in:
parent
43b5d83e11
commit
13932042d3
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-02-15 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* shell.el (shell-delimiter-argument-list):
|
||||
Revert 2011-02-17 change. (Bug#8027)
|
||||
|
||||
2012-02-15 Chong Yidong <cyd@gnu.org>
|
||||
|
||||
* custom.el (defcustom): Doc fix; note use of defvar.
|
||||
|
|
|
@ -153,13 +153,14 @@ This is a fine thing to set in your `.emacs' file."
|
|||
:type '(repeat (string :tag "Suffix"))
|
||||
:group 'shell)
|
||||
|
||||
(defcustom shell-delimiter-argument-list nil ; '(?\| ?& ?< ?> ?\( ?\) ?\;)
|
||||
(defcustom shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
|
||||
"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."
|
||||
:type '(choice (const nil)
|
||||
(repeat :tag "List of characters" character))
|
||||
:version "24.1" ; changed to nil (bug#8027)
|
||||
;; Reverted.
|
||||
;; :version "24.1" ; changed to nil (bug#8027)
|
||||
:group 'shell)
|
||||
|
||||
(defvar shell-file-name-chars
|
||||
|
|
Loading…
Add table
Reference in a new issue