diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-03-22 06:59:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-03-22 06:59:54 +0000 |
| commit | 8aa3a1878374c571d2e26647ef41ebee65b011ea (patch) | |
| tree | 21db93d6492867fc367472508cb9d4b199743b3a | |
| parent | 29944b73c7130f86697abb86723c5c3cedee02b4 (diff) | |
| download | emacs-8aa3a1878374c571d2e26647ef41ebee65b011ea.tar.gz | |
Don't load help-screen at run time if compiled.
| -rw-r--r-- | lisp/help.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index fc0056233a3..68b3f641593 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -23,7 +23,9 @@ ;;; Code: -(require 'help-screen) +;; Get the macro make-help-screen when this is compiled, +;; or run interpreted, but not when the compiled code is loaded. +(eval-when-compile (require 'help-screen)) (defvar help-map (make-sparse-keymap) "Keymap for characters following the Help key.") |
