1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(top-level): Move provide statement to end.

(pcmpl-rpm): Remove unused custom group.
This commit is contained in:
Glenn Morris 2009-10-31 02:17:41 +00:00
parent 113b8dccbe
commit 4c814fd27c
2 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,8 @@
2009-10-31 Glenn Morris <rgm@gnu.org>
* pcmpl-rpm.el (top-level): Move provide statement to end.
(pcmpl-rpm): Remove unused custom group.
* pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
* mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.

View File

@ -1,7 +1,7 @@
;;; pcmpl-rpm.el --- functions for dealing with rpm completions
;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
;; 2008, 2009 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@ -24,14 +24,8 @@
;;; Code:
(provide 'pcmpl-rpm)
(require 'pcomplete)
(defgroup pcmpl-rpm nil
"Functions for dealing with rpm completions."
:group 'pcomplete)
;; Functions:
(defsubst pcmpl-rpm-packages ()
@ -324,5 +318,7 @@
(t
(error "You must select a mode: -q, -i, -U, --verify, etc"))))))
(provide 'pcmpl-rpm)
;; arch-tag: 4e64b490-fecf-430e-b2b9-70a8ad64b8c1
;;; pcmpl-rpm.el ends here