(normal-top-level): Put a condition-case around
the code loading subdirs.el.
This commit is contained in:
parent
906d41a775
commit
bbfc759111
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue