diff options
| -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 @@ | |||
| 23 | 23 | ||
| 24 | ;;; Code: | 24 | ;;; Code: |
| 25 | 25 | ||
| 26 | (require 'help-screen) | 26 | ;; Get the macro make-help-screen when this is compiled, |
| 27 | ;; or run interpreted, but not when the compiled code is loaded. | ||
| 28 | (eval-when-compile (require 'help-screen)) | ||
| 27 | 29 | ||
| 28 | (defvar help-map (make-sparse-keymap) | 30 | (defvar help-map (make-sparse-keymap) |
| 29 | "Keymap for characters following the Help key.") | 31 | "Keymap for characters following the Help key.") |