From: Vinicius Jose Latorre Date: Thu, 8 Nov 2007 17:14:46 +0000 (+0000) Subject: Change regexp to match dir like 'a...b' X-Git-Tag: emacs-pretest-22.1.90~415 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f71ee9c1b32f5145829aa0d3eb5c6a302734c2cd;p=emacs.git Change regexp to match dir like 'a...b' --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ee381421a7d..30b0241e8fd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-11-08 David Hansen (tiny change) + + * eshell/em-dirs.el (eshell-expand-multiple-dots): Change regexp to + match dir like "a...b". + 2007-11-07 Johan Bockg,Ae(Brd * eshell/esh-mode.el (eshell-output-filter): diff --git a/lisp/eshell/em-dirs.el b/lisp/eshell/em-dirs.el index 0000cae5adf..02556661b1b 100644 --- a/lisp/eshell/em-dirs.el +++ b/lisp/eshell/em-dirs.el @@ -319,7 +319,7 @@ in the minibuffer: (before translate-multiple-dots (filename &optional directory) activate) (setq filename (eshell-expand-multiple-dots filename)))" - (while (string-match "\\.\\.\\(\\.+\\)" path) + (while (string-match "\\(?:^\\|/\\)\\.\\.\\(\\.+\\)\\(?:$\\|/\\)" path) (let* ((extra-dots (match-string 1 path)) (len (length extra-dots)) replace-text)