Show
Ignore:
Timestamp:
08/18/06 08:35:31 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/eshell/em-glob.el

    r4037 r4148  
    9898  :group 'eshell-glob) 
    9999 
    100 (defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?#
     100(defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?# ?^
    101101  "*List of additional characters used in extended globbing." 
    102102  :type '(repeat character) 
     
    106106  '((?\] . "]") 
    107107    (?\[ . "[") 
     108    (?^  . "^") 
    108109    (??  . ".") 
    109110    (?*  . ".*")