Mercurial > emacs
changeset 72346:adbd3421e276
(eshell-glob-chars-list) (eshell-glob-translate-alist): Add support
for [^g] in character globs.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Thu, 10 Aug 2006 15:30:56 +0000 |
parents | 1249c0899103 |
children | 494f2c627b5b |
files | lisp/eshell/em-glob.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/eshell/em-glob.el Thu Aug 10 15:30:17 2006 +0000 +++ b/lisp/eshell/em-glob.el Thu Aug 10 15:30:56 2006 +0000 @@ -97,7 +97,7 @@ :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 @@ (defcustom eshell-glob-translate-alist '((?\] . "]") (?\[ . "[") + (?^ . "^") (?? . ".") (?* . ".*") (?~ . "~")