diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-22 23:27:35 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-22 23:27:35 +0000 |
commit | e144e9d8d37d353fc8939650de64ae8cc8471e00 (patch) | |
tree | 28c89bd72a397743a47f2e3f407e1b2941cb4647 /lisp/finder.el | |
parent | 423995d841d11bc04ae96ebed71108dd076f17ce (diff) | |
download | emacs-e144e9d8d37d353fc8939650de64ae8cc8471e00.tar.gz |
Don't load finder-inf.el during byte-compilation.
Diffstat (limited to 'lisp/finder.el')
-rw-r--r-- | lisp/finder.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/finder.el b/lisp/finder.el index 2d843e0fdf9..56a13c09a37 100644 --- a/lisp/finder.el +++ b/lisp/finder.el @@ -39,7 +39,9 @@ ;;; Code: (require 'lisp-mnt) -(require 'finder-inf) +;; 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) ;; Local variable in finder buffer. (defvar finder-headmark) |