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
bbfc7591
Commit
bbfc7591
authored
Apr 29, 2000
by
Gerd Moellmann
Browse files
(normal-top-level): Put a condition-case around
the code loading subdirs.el.
parent
906d41a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lisp/startup.el
lisp/startup.el
+3
-2
No files found.
lisp/startup.el
View file @
bbfc7591
...
...
@@ -412,8 +412,9 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
new
)
(
while
tail
(
setq
new
(
cons
(
car
tail
)
new
))
(
let
((
default-directory
(
car
tail
)))
(
load
(
expand-file-name
"subdirs.el"
(
car
tail
))
t
t
t
))
(
condition-case
nil
(
let
((
default-directory
(
car
tail
)))
(
load
(
expand-file-name
"subdirs.el"
(
car
tail
))
t
t
t
)))
(
setq
tail
(
cdr
tail
))))
(
if
(
not
(
eq
system-type
'vax-vms
))
(
progn
...
...
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