Add defgroup's; use defcustom for user vars.

This commit is contained in:
Richard M. Stallman 1997-04-12 03:18:33 +00:00
parent 124c852b0a
commit bbf5eb2805
7 changed files with 243 additions and 96 deletions

View file

@ -47,15 +47,24 @@
(require 'compile)
(defvar makeinfo-run-command "makeinfo"
"*Command used to run `makeinfo' subjob.
The name of the file is appended to this string, separated by a space.")
(defgroup makeinfo nil
"Run makeinfo conveniently"
:group 'docs)
(defvar makeinfo-options "--fill-column=70"
(defcustom makeinfo-run-command "makeinfo"
"*Command used to run `makeinfo' subjob.
The name of the file is appended to this string, separated by a space."
:type 'string
:group 'makeinfo)
(defcustom makeinfo-options "--fill-column=70"
"*String containing options for running `makeinfo'.
Do not include `--footnote-style' or `--paragraph-indent';
the proper way to specify those is with the Texinfo commands
`@footnotestyle` and `@paragraphindent'.")
`@footnotestyle` and `@paragraphindent'."
:type 'string
:group 'makeinfo)
(require 'texinfo)