summaryrefslogtreecommitdiff
path: root/lisp/textmodes/makeinfo.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-02-14 12:54:36 +0100
committerStefan Kangas <stefan@marxist.se>2021-02-14 12:54:36 +0100
commit7f62faf20607394f9c6dfa0f1696cb68291f9fb7 (patch)
treec554692930143b8f3e181c2b9ff481bd0de001fd /lisp/textmodes/makeinfo.el
parent760910f4917ad8ff5e1cd1bf0bfec443b02f0e44 (diff)
downloademacs-7f62faf20607394f9c6dfa0f1696cb68291f9fb7.tar.gz
emacs-7f62faf20607394f9c6dfa0f1696cb68291f9fb7.tar.bz2
emacs-7f62faf20607394f9c6dfa0f1696cb68291f9fb7.zip
Remove redundant :group args from textmodes/*.el
* lisp/textmodes/enriched.el: * lisp/textmodes/ispell.el: * lisp/textmodes/makeinfo.el: * lisp/textmodes/paragraphs.el: * lisp/textmodes/picture.el: * lisp/textmodes/refbib.el: * lisp/textmodes/refer.el: * lisp/textmodes/remember.el: * lisp/textmodes/texinfo.el: * lisp/textmodes/tildify.el: * lisp/textmodes/two-column.el: Remove redundant :group args.
Diffstat (limited to 'lisp/textmodes/makeinfo.el')
-rw-r--r--lisp/textmodes/makeinfo.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/textmodes/makeinfo.el b/lisp/textmodes/makeinfo.el
index e48649bae37..f63894b8150 100644
--- a/lisp/textmodes/makeinfo.el
+++ b/lisp/textmodes/makeinfo.el
@@ -59,16 +59,14 @@
(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)
+ :type 'string)
(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'."
- :type 'string
- :group 'makeinfo)
+ :type 'string)
(require 'texinfo)