From: Stefan Monnier Date: Fri, 22 Mar 2002 23:27:35 +0000 (+0000) Subject: Don't load finder-inf.el during byte-compilation. X-Git-Tag: ttn-vms-21-2-B4~16014 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0c4433f47ae0428d79f097a27c99542567bcdf5;p=emacs.git Don't load finder-inf.el during byte-compilation. --- 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)