aboutsummaryrefslogtreecommitdiff
path: root/texinfo/emacs/makeinfo.el
diff options
context:
space:
mode:
Diffstat (limited to 'texinfo/emacs/makeinfo.el')
-rw-r--r--texinfo/emacs/makeinfo.el17
1 files changed, 13 insertions, 4 deletions
diff --git a/texinfo/emacs/makeinfo.el b/texinfo/emacs/makeinfo.el
index a649d52..d6ee7bb 100644
--- a/texinfo/emacs/makeinfo.el
+++ b/texinfo/emacs/makeinfo.el
@@ -47,15 +47,24 @@
(require 'compile)
-(defvar makeinfo-run-command "makeinfo"
+(defgroup makeinfo nil
+ "Run makeinfo conveniently"
+ :group 'docs)
+
+
+(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.")
+The name of the file is appended to this string, separated by a space."
+ :type 'string
+ :group 'makeinfo)
-(defvar makeinfo-options "--fill-column=70"
+(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)