From 9d1fb1792cbdfe71d0729eb56820d934483d8beb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 5 Jul 1999 16:00:07 +0000 Subject: [PATCH] (normal-top-level-add-subdirs-to-load-path): Avoid doing a `stat' when it isn't necessary because that can cause trouble when an NFS server is down. --- lisp/startup.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/startup.el b/lisp/startup.el index b30bd450ea3..39286a56110 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -373,6 +373,10 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." (while contents (unless (member (car contents) '("." ".." "RCS" "CVS")) (when (and (string-match "\\`[a-zA-Z0-9]" (car contents)) + ;; Avoid doing a `stat' when it isn't necessary + ;; because that can cause trouble when an NFS server + ;; is down. + (not (string-match "\\.elc?\\'" (car contents))) (file-directory-p (car contents))) (let ((expanded (expand-file-name (car contents)))) (unless (file-exists-p (expand-file-name ".nosearch" -- 2.39.2