diff options
author | Dave Love <fx@gnu.org> | 1999-08-16 23:06:06 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-08-16 23:06:06 +0000 |
commit | 2ebf3469d8dd9afeb9a521970e40948c02bf06af (patch) | |
tree | 35f52e77fdf999ddcb6ddc4d7b5305af628dfbcd /lisp/help-macro.el | |
parent | c906e3ab87157ef5d50afeb9cda7869f2672d9cf (diff) | |
download | emacs-2ebf3469d8dd9afeb9a521970e40948c02bf06af.tar.gz |
Move provide to end.
(three-step-help): Customize.
Diffstat (limited to 'lisp/help-macro.el')
-rw-r--r-- | lisp/help-macro.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lisp/help-macro.el b/lisp/help-macro.el index 3a04fa65b2b..becc1684f57 100644 --- a/lisp/help-macro.el +++ b/lisp/help-macro.el @@ -44,7 +44,7 @@ ;;-> ;;->c Redistribute civs from overfull sectors into connected underfull ones ;;-> The functions typically named by empire-ideal-civ-fcn control -;;-> based in part on empire-sector-civ-threshold +;;-> based in part on empire-sector-civ-threshold ;;->m Redistribute military using levels given by empire-ideal-mil-fcn ;;->p Redistribute excess population to highways for max pop growth ;;-> Excess is any sector so full babies will not be born. @@ -62,22 +62,23 @@ ;;; Change Log: ;; -;; 22-Jan-1991 Lynn Slater x2048 +;; 22-Jan-1991 Lynn Slater x2048 ;; Last Modified: Mon Oct 1 11:43:52 1990 #3 (Lynn Slater) ;; documented better ;;; Code: -(provide 'help-macro) (require 'backquote) ;;;###autoload -(defvar three-step-help nil +(defcustom three-step-help nil "*Non-nil means give more info about Help command in three steps. The three steps are simple prompt, prompt with all options, and window listing and describing the options. A value of nil means skip the middle step, so that -\\[help-command] \\[help-command] gives the window that lists the options.") +\\[help-command] \\[help-command] gives the window that lists the options." + :type 'boolean + :group 'help) (defmacro make-help-screen (fname help-line help-text helped-map) "Construct help-menu function name FNAME. @@ -193,5 +194,6 @@ and then returns." (set-window-configuration config)))))) ))) -;;; help-macro.el +(provide 'help-macro) +;;; help-macro.el ends here |