(gnus-group-make-group): Simplify method.
authorSimon Josefsson <jas@extundo.com>
Fri, 5 Nov 1999 23:39:03 +0000 (23:39 +0000)
committerSimon Josefsson <jas@extundo.com>
Fri, 5 Nov 1999 23:39:03 +0000 (23:39 +0000)
lisp/gnus-group.el

index 52e1d5f..f75cc2d 100644 (file)
@@ -1810,10 +1810,11 @@ ADDRESS."
 
   (when (stringp method)
     (setq method (or (gnus-server-to-method method) method)))
-  (let* ((meth (when (and method
-                         (not (gnus-server-equal method gnus-select-method)))
-                (if address (list (intern method) address)
-                  method)))
+  (let* ((meth (gnus-method-simplify
+               (when (and method
+                          (not (gnus-server-equal method gnus-select-method)))
+                 (if address (list (intern method) address)
+                   method))))
         (nname (if method (gnus-group-prefixed-name name meth) name))
         backend info)
     (when (gnus-gethash nname gnus-newsrc-hashtb)