From: John Wiegley Date: Tue, 1 Nov 2005 09:31:26 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~6145 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dbc56a8ba256b126422423e23368440f19cd0040;p=emacs.git *** empty log message *** --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a15ee5c6d7f..b9782a19545 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -59,11 +59,6 @@ recently due to changes in font-lock, so this goes back to version 21 behavior. - * eshell/em-glob.el (eshell-extended-glob): Expand the "." path - before passing it down to `eshell-glob-entries'. This is done - because special file-handlers will on trigger on ".", even if - `default-directory' is special. - 2005-11-01 Nick Roberts * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function. diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el index ec7ed22876a..869144dad74 100644 --- a/lisp/eshell/em-glob.el +++ b/lisp/eshell/em-glob.el @@ -254,8 +254,7 @@ the form: (file-name-absolute-p (car paths))) (eshell-glob-entries (file-name-as-directory (car paths)) (cdr paths)) - (eshell-glob-entries (expand-file-name - (file-name-as-directory ".")) paths)) + (eshell-glob-entries (file-name-as-directory ".") paths)) (if message-shown (message nil))) (or (and matches (nreverse matches))