From: John Wiegley Date: Thu, 10 Aug 2006 15:30:56 +0000 (+0000) Subject: (eshell-glob-chars-list) (eshell-glob-translate-alist): Add support X-Git-Tag: emacs-pretest-22.0.90~1045 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f80c9382efe996857f34ddd36ddfc7513dc08eb0;p=emacs.git (eshell-glob-chars-list) (eshell-glob-translate-alist): Add support for [^g] in character globs. --- 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." :type 'boolean :group 'eshell-glob) -(defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?#) +(defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?# ?^) "*List of additional characters used in extended globbing." :type '(repeat character) :group 'eshell-glob) @@ -105,6 +105,7 @@ This option slows down recursive glob processing by quite a bit." (defcustom eshell-glob-translate-alist '((?\] . "]") (?\[ . "[") + (?^ . "^") (?? . ".") (?* . ".*") (?~ . "~")