Variable: eshell-special-chars-outside-quoting

eshell-special-chars-outside-quoting is a customizable variable defined in esh-arg.el.gz.

Value

(59 38 124 62 32 9 10 35 33 92 34 39)

Documentation

Characters that require escaping outside of double quotes.

Without escaping them, they will introduce a change in the argument.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-arg.el.gz
(defcustom eshell-special-chars-outside-quoting
  (append eshell-delimiter-argument-list '(?# ?! ?\\ ?\" ?\'))
  "Characters that require escaping outside of double quotes.
Without escaping them, they will introduce a change in the argument."
  :type '(repeat character)
  :group 'eshell-arg)