2001-12-22 22:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Sun, 23 Dec 2001 03:16:29 +0000 (03:16 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Sun, 23 Dec 2001 03:16:29 +0000 (03:16 +0000)
* gnus.el (gnus-group-prefixed-name): If group name is prefixed,
return it.

lisp/ChangeLog
lisp/gnus.el

index 9dc7511..0d0b27a 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-22 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * gnus.el (gnus-group-prefixed-name): If group name is prefixed,
+       return it.
+
 2001-12-21  Paul Jarc <prj@po.cwru.edu>
        
        * gnus.el (gnus-valid-select-methods): Include nnmaildir.
index e475aed..b723727 100644 (file)
@@ -2725,7 +2725,8 @@ that that variable is buffer-local to the summary buffers."
   "Return the whole name from GROUP and METHOD."
   (and (stringp method) (setq method (gnus-server-to-method method)))
   (if (or (not method)
-         (gnus-server-equal method "native"))
+         (gnus-server-equal method "native")
+         (string-match ":" group))
       group
     (concat (gnus-method-to-server-name method) ":" group)))