]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert previous change.
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 16 Feb 2008 20:21:16 +0000 (20:21 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 16 Feb 2008 20:21:16 +0000 (20:21 +0000)
lisp/vc-hooks.el

index 38ad7b5ea8313ee018317ad45c0a28930bd51dd7..64a7d8f527a57cd1e4bfcd68093c4488032cd478 100644 (file)
@@ -316,7 +316,7 @@ The function walks up the directory tree from FILE looking for WITNESS.
 If WITNESS if not found, return nil, otherwise return the root."
   ;; Represent /home/luser/foo as ~/foo so that we don't try to look for
   ;; witnesses in /home or in /.
-  (while (and (not (file-directory-p file)) (file-exists-p file))
+  (while (not (file-directory-p file))
     (setq file (file-name-directory (directory-file-name file))))
   (setq file (abbreviate-file-name file))
   (let ((root nil)