]> git.eshelyaron.com Git - emacs.git/commitdiff
Silence gnus.el compilation.
authorGlenn Morris <rgm@gnu.org>
Mon, 1 Nov 2010 01:40:12 +0000 (18:40 -0700)
committerGlenn Morris <rgm@gnu.org>
Mon, 1 Nov 2010 01:40:12 +0000 (18:40 -0700)
* gnus.el (gnus-sloppily-equal-method-parameters): Move definition before use.

lisp/gnus/ChangeLog
lisp/gnus/gnus.el

index 9cc8462e12b9f77aabc96af80e73c49dda208e06..8bd3f83b8604368a5fecb604e99ac55c0c159f89 100644 (file)
@@ -1,5 +1,7 @@
 2010-11-01  Glenn Morris  <rgm@gnu.org>
 
+       * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
+
        * sieve-manage.el: Require 'cl when compiling.
 
        * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
index 6f4ef631ae85272814eacaa44fe924392700b0f2..82cfd672be7de91268b68a22b9eaa76f19b93b39 100644 (file)
@@ -1,8 +1,8 @@
 ;;; gnus.el --- a newsreader for GNU Emacs
 
-;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997, 1998,
-;;   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
-;;   Free Software Foundation, Inc.
+;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997,
+;;   1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
+;;   2010  Free Software Foundation, Inc.
 
 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
 ;;     Lars Magne Ingebrigtsen <larsi@gnus.org>
@@ -3546,16 +3546,6 @@ that that variable is buffer-local to the summary buffers."
                                            gnus-valid-select-methods)))
                 (equal (nth 1 m1) (nth 1 m2)))))))
 
-(defun gnus-methods-sloppily-equal (m1 m2)
-  ;; Same method.
-  (or
-   (eq m1 m2)
-   ;; Type and name are equal.
-   (and
-    (eq (car m1) (car m2))
-    (equal (cadr m1) (cadr m2))
-    (gnus-sloppily-equal-method-parameters m1 m2))))
-
 (defsubst gnus-sloppily-equal-method-parameters (m1 m2)
   ;; Check parameters for sloppy equalness.
   (let ((p1 (copy-sequence (cddr m1)))
@@ -3584,6 +3574,16 @@ that that variable is buffer-local to the summary buffers."
       ;; If p2 now is empty, they were equal.
       (null p2))))
 
+(defun gnus-methods-sloppily-equal (m1 m2)
+  ;; Same method.
+  (or
+   (eq m1 m2)
+   ;; Type and name are equal.
+   (and
+    (eq (car m1) (car m2))
+    (equal (cadr m1) (cadr m2))
+    (gnus-sloppily-equal-method-parameters m1 m2))))
+
 (defun gnus-server-equal (m1 m2)
   "Say whether two methods are equal."
   (let ((m1 (cond ((null m1) gnus-select-method)