# HG changeset patch # User Eli Zaretskii # Date 976201319 0 # Node ID 3d60bae71cd9d310b5988d28e38c6f1b187b1e76 # Parent 5cd7702045011c622c298de04b355ff9fd387098 (normal-top-level-add-subdirs-to-load-path): Ignore the CVS and RCS subdirectories case-insensitively. diff -r 5cd770204501 -r 3d60bae71cd9 lisp/startup.el --- a/lisp/startup.el Thu Dec 07 14:53:45 2000 +0000 +++ b/lisp/startup.el Thu Dec 07 15:01:59 2000 +0000 @@ -360,7 +360,8 @@ (setq normal-top-level-add-subdirs-inode-list (cons attrs normal-top-level-add-subdirs-inode-list)) (while contents - (unless (member (car contents) '("." ".." "RCS" "CVS")) + ;; The lower-case variants of RCS and CVS are for DOS/Windows. + (unless (member (car contents) '("." ".." "RCS" "CVS" "rcs" "cvs")) (when (and (string-match "\\`[[:alnum:]]" (car contents)) ;; Avoid doing a `stat' when it isn't necessary ;; because that can cause trouble when an NFS server