aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/eshell/em-glob.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el
index 76bde7784dc..c700d5d7f6e 100644
--- a/lisp/eshell/em-glob.el
+++ b/lisp/eshell/em-glob.el
@@ -97,7 +97,7 @@ This option slows down recursive glob processing by quite a bit."
97 :type 'boolean 97 :type 'boolean
98 :group 'eshell-glob) 98 :group 'eshell-glob)
99 99
100(defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?#) 100(defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?# ?^)
101 "*List of additional characters used in extended globbing." 101 "*List of additional characters used in extended globbing."
102 :type '(repeat character) 102 :type '(repeat character)
103 :group 'eshell-glob) 103 :group 'eshell-glob)
@@ -105,6 +105,7 @@ This option slows down recursive glob processing by quite a bit."
105(defcustom eshell-glob-translate-alist 105(defcustom eshell-glob-translate-alist
106 '((?\] . "]") 106 '((?\] . "]")
107 (?\[ . "[") 107 (?\[ . "[")
108 (?^ . "^")
108 (?? . ".") 109 (?? . ".")
109 (?* . ".*") 110 (?* . ".*")
110 (?~ . "~") 111 (?~ . "~")