diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-08-06 04:31:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-08-06 04:31:58 +0000 |
commit | 7172336736efd9dcf4439f784703d2138f077684 (patch) | |
tree | 764f8865615878f46c804b98ffd956dc87c9cb9e /lisp/help.el | |
parent | bf69439f99cf722d8a76920a423c22686cbb0cf0 (diff) | |
download | emacs-7172336736efd9dcf4439f784703d2138f077684.tar.gz |
(describe-mode): Make minor mode list more concise.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/lisp/help.el b/lisp/help.el index 4d92f69cebd..af79bbcf57c 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -822,16 +822,13 @@ whose documentation describes the minor mode." (sort minor-modes (lambda (a b) (string-lessp (cadr a) (cadr b))))) (when minor-modes - (princ "Summary of minor modes:\n") + (princ "Enabled minor modes:\n") (make-local-variable 'help-button-cache) (with-current-buffer standard-output (dolist (mode minor-modes) (let ((mode-function (nth 0 mode)) (pretty-minor-mode (nth 1 mode)) (indicator (nth 2 mode))) - (setq indicator (if (zerop (length indicator)) - "no indicator" - (format "indicator%s" indicator))) (add-text-properties 0 (length pretty-minor-mode) '(face bold) pretty-minor-mode) (save-excursion @@ -840,16 +837,22 @@ whose documentation describes the minor mode." (push (point-marker) help-button-cache) ;; Document the minor modes fully. (insert pretty-minor-mode) - (princ (format " minor mode (%s):\n" indicator)) + (princ (format " minor mode (%s):\n" + (if (zerop (length indicator)) + "no indicator" + (format "indicator%s" + indicator)))) (princ (documentation mode-function))) - (princ " ") (insert-button pretty-minor-mode 'action (car help-button-cache) 'follow-link t 'help-echo "mouse-2, RET: show full information") - (princ (format " minor mode (%s):\n" indicator))))) - (princ "\n(Full information about these minor modes -follows the description of the major mode.)\n\n")) + (newline))) + (forward-line -1) + (fill-paragraph nil) + (forward-line 1)) + + (princ "\n(Information about these minor modes follows the major mode info.)\n\n")) ;; Document the major mode. (let ((mode mode-name)) (with-current-buffer standard-output |