changeset 66601:2f18208cd84b

*** empty log message ***
author John Wiegley <johnw@newartisans.com>
date Tue, 01 Nov 2005 09:31:26 +0000
parents e790b816b43d
children f1d7e489a526
files lisp/ChangeLog lisp/eshell/em-glob.el
diffstat 2 files changed, 1 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Nov 01 08:02:46 2005 +0000
+++ b/lisp/ChangeLog	Tue Nov 01 09:31:26 2005 +0000
@@ -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  <nickrob@snap.net.nz>
 
 	* progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
--- a/lisp/eshell/em-glob.el	Tue Nov 01 08:02:46 2005 +0000
+++ b/lisp/eshell/em-glob.el	Tue Nov 01 09:31:26 2005 +0000
@@ -254,8 +254,7 @@
 		 (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))