diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-02-14 12:54:36 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-02-14 12:54:36 +0100 |
commit | 7f62faf20607394f9c6dfa0f1696cb68291f9fb7 (patch) | |
tree | c554692930143b8f3e181c2b9ff481bd0de001fd /lisp/textmodes/refer.el | |
parent | 760910f4917ad8ff5e1cd1bf0bfec443b02f0e44 (diff) | |
download | emacs-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/refer.el')
-rw-r--r-- | lisp/textmodes/refer.el | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lisp/textmodes/refer.el b/lisp/textmodes/refer.el index ae1f7781686..c2bf90f37bb 100644 --- a/lisp/textmodes/refer.el +++ b/lisp/textmodes/refer.el @@ -91,8 +91,7 @@ the default search path. Since Refer does not know that default path, it cannot search it. Include that path explicitly in your BIBINPUTS environment if you really want it searched (which is not likely to happen anyway)." - :type '(choice (repeat directory) (const bibinputs) (const texinputs)) - :group 'refer) + :type '(choice (repeat directory) (const bibinputs) (const texinputs))) (defcustom refer-bib-files 'dir "List of \\.bib files to search for references, @@ -110,16 +109,14 @@ If `refer-bib-files' is nil, auto or dir, it is setq'd to the appropriate list of files when it is first used if `refer-cache-bib-files' is t. If `refer-cache-bib-files' is nil, the list of \\.bib files to use is re-read each time it is needed." - :type '(choice (repeat file) (const nil) (const auto) (const dir)) - :group 'refer) + :type '(choice (repeat file) (const nil) (const auto) (const dir))) (defcustom refer-cache-bib-files t "Variable determining whether the value of `refer-bib-files' should be cached. If t, initialize the value of refer-bib-files the first time it is used. If nil, re-read the list of \\.bib files depending on the value of `refer-bib-files' each time it is needed." - :type 'boolean - :group 'refer) + :type 'boolean) (defcustom refer-bib-files-regexp "\\\\bibliography" "Regexp matching a bibliography file declaration. @@ -131,8 +128,7 @@ command is expected to specify a file name, or a list of comma-separated file names, within curly braces. If a specified file doesn't exist and has no extension, a \\.bib extension is automatically tried." - :type 'regexp - :group 'refer) + :type 'regexp) (make-variable-buffer-local 'refer-bib-files) (make-variable-buffer-local 'refer-cache-bib-files) |