Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c4a40544
Commit
c4a40544
authored
Dec 07, 2000
by
Eli Zaretskii
Browse files
(normal-top-level-add-subdirs-to-load-path): Ignore
the CVS and RCS subdirectories case-insensitively.
parent
76a76a57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/startup.el
lisp/startup.el
+2
-1
No files found.
lisp/startup.el
View file @
c4a40544
...
...
@@ -360,7 +360,8 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
(
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment