emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/eshell/em-glob.el,v


From: John Wiegley
Subject: [Emacs-diffs] Changes to emacs/lisp/eshell/em-glob.el,v
Date: Thu, 10 Aug 2006 15:30:56 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     John Wiegley <johnw>    06/08/10 15:30:56

Index: em-glob.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/eshell/em-glob.el,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- em-glob.el  6 Feb 2006 11:57:57 -0000       1.18
+++ em-glob.el  10 Aug 2006 15:30:56 -0000      1.19
@@ -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
   '((?\] . "]")
     (?\[ . "[")
+    (?^  . "^")
     (??  . ".")
     (?*  . ".*")
     (?~  . "~")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]