changeset 105810:9381dbed5719

(top-level): Move provide statement to end. (pcmpl-rpm): Remove unused custom group.
author Glenn Morris <rgm@gnu.org>
date Sat, 31 Oct 2009 02:17:41 +0000
parents 27deb58e021f
children 18865054beee
files lisp/ChangeLog lisp/pcmpl-rpm.el
diffstat 2 files changed, 7 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sat Oct 31 02:15:09 2009 +0000
+++ b/lisp/ChangeLog	Sat Oct 31 02:17:41 2009 +0000
@@ -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.
--- a/lisp/pcmpl-rpm.el	Sat Oct 31 02:15:09 2009 +0000
+++ b/lisp/pcmpl-rpm.el	Sat Oct 31 02:17:41 2009 +0000
@@ -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