Mercurial > emacs
changeset 2312:ad7b89a430df
Don't load help-screen at run time if compiled.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 22 Mar 1993 06:59:54 +0000 |
parents | 98b714786ad0 |
children | ddab91a375d8 |
files | lisp/help.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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.")