diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-10-10 15:04:41 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-10-10 15:04:41 +0000 |
commit | 2e819a0824bfab7c5b0507faab4ed8b21fae752e (patch) | |
tree | c390cf043cc3602a3745723168b18ee4130f4a70 /lisp/finder.el | |
parent | 5188f2eb943cf6a5f08c0701c78486490e2f5c2b (diff) | |
download | emacs-2e819a0824bfab7c5b0507faab4ed8b21fae752e.tar.gz |
("finder-inf"): Don't fail if the file is absent.
Diffstat (limited to 'lisp/finder.el')
-rw-r--r-- | lisp/finder.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/finder.el b/lisp/finder.el index aba3796c400..fe3460b2169 100644 --- a/lisp/finder.el +++ b/lisp/finder.el @@ -42,7 +42,7 @@ (require 'find-func) ;for find-library(-suffixes) ;; Use `load' rather than `require' so that it doesn't get loaded ;; during byte-compilation (at which point it might be missing). -(load "finder-inf" nil t) +(load "finder-inf" t t) ;; Local variable in finder buffer. (defvar finder-headmark) |