# HG changeset patch # User Richard M. Stallman # Date 732783594 0 # Node ID ad7b89a430df920e2a4eed6ce6fa7f4021c6c35b # Parent 98b714786ad0b38aa5b76f836a7be035885ef686 Don't load help-screen at run time if compiled. diff -r 98b714786ad0 -r ad7b89a430df lisp/help.el --- a/lisp/help.el Mon Mar 22 06:54:36 1993 +0000 +++ b/lisp/help.el Mon Mar 22 06:59:54 1993 +0000 @@ -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.")