summaryrefslogtreecommitdiff
path: root/lisp/pcmpl-gnu.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-09-19 14:39:34 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-09-19 14:39:34 +0200
commitc5e1ed9a94374b93f233c450c5b03edfeb698ab3 (patch)
tree197d84f513a26c386a05329762f9ff3afe541039 /lisp/pcmpl-gnu.el
parentb82f34f996c25deda1b89fc7006833335bb1a6fa (diff)
downloademacs-c5e1ed9a94374b93f233c450c5b03edfeb698ab3.tar.gz
Fix :version in recent commit
* lisp/pcmpl-gnu.el (pcmpl-gnu-makefile-includes): Fix :version.
Diffstat (limited to 'lisp/pcmpl-gnu.el')
-rw-r--r--lisp/pcmpl-gnu.el9
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/pcmpl-gnu.el b/lisp/pcmpl-gnu.el
index 8ec5d93a68a..f22632ae279 100644
--- a/lisp/pcmpl-gnu.el
+++ b/lisp/pcmpl-gnu.el
@@ -37,14 +37,12 @@
(defcustom pcmpl-gnu-makefile-regexps
'("\\`GNUmakefile" "\\`[Mm]akefile" "\\.ma?k\\'")
"A list of regexps that will match Makefile names."
- :type '(repeat regexp)
- :group 'pcmpl-gnu)
+ :type '(repeat regexp))
(defcustom pcmpl-gnu-makefile-includes t
"If non-nil, `pcomplete/make' completes on targets in included files."
:type 'boolean
- :group 'pcmpl-gnu
- :version 27.1
+ :version "27.1"
:safe 'booleanp)
;; Functions:
@@ -166,8 +164,7 @@ Return the new list."
"\\.t\\(ar\\(\\.\\(gz\\|bz2\\|Z\\|xz\\)\\)?\\|gz\\|a[zZ]\\|z2\\)\\'"
"A regexp which matches any tar archive."
:version "24.3" ; added xz
- :type 'regexp
- :group 'pcmpl-gnu)
+ :type 'regexp)
;; Only used in tar-mode buffers.
(defvar tar-parse-info)