]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix :version in recent commit
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 19 Sep 2019 12:39:34 +0000 (14:39 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 19 Sep 2019 12:39:34 +0000 (14:39 +0200)
* lisp/pcmpl-gnu.el (pcmpl-gnu-makefile-includes): Fix :version.

lisp/pcmpl-gnu.el

index 8ec5d93a68a1d5f8f2e334a24d7d4e8ef98f99a1..f22632ae279d0d854f2574a9fb12ec84a5353dc1 100644 (file)
 (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)