]> git.eshelyaron.com Git - emacs.git/commitdiff
(eshell-glob-chars-list) (eshell-glob-translate-alist): Add support
authorJohn Wiegley <johnw@newartisans.com>
Thu, 10 Aug 2006 15:30:56 +0000 (15:30 +0000)
committerJohn Wiegley <johnw@newartisans.com>
Thu, 10 Aug 2006 15:30:56 +0000 (15:30 +0000)
for [^g] in character globs.

lisp/eshell/em-glob.el

index 76bde7784dce8b3ba5c7f4a2ecf4a7de55b1e449..c700d5d7f6e38b6526e84f619340d84f39eb2379 100644 (file)
@@ -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
   '((?\] . "]")
     (?\[ . "[")
+    (?^  . "^")
     (??  . ".")
     (?*  . ".*")
     (?~  . "~")