* lisp/gnus-namazu.el (gnus-namazu/make-directory-table): Fix normalization
authorkose <kose>
Thu, 29 Jul 2004 04:16:56 +0000 (04:16 +0000)
committerkose <kose>
Thu, 29 Jul 2004 04:16:56 +0000 (04:16 +0000)
of dir (remove drive letter).

ChangeLog
lisp/gnus-namazu.el

index 65481e0..a11237c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-29  KOSEKI Yoshinori  <kose@meadowy.org>
+
+       * lisp/gnus-namazu.el (gnus-namazu/make-directory-table): Fix normalization
+       of dir (remove drive letter).
+
 2004-07-20  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * texi/ptexinfmt.el: Support @s.
index ec638db..d4582ac 100644 (file)
@@ -371,7 +371,8 @@ This means that the group \"nnimap+server:INBOX.group\" is placed in
               (setq dir (nnmail-group-pathname
                          (substring group (match-end 0))
                          "/"))
-              (push (cons (concat (cdr pair) (substring dir 1)) group)
+              (push (cons (concat (cdr pair) 
+                  (substring dir (+ 1 (string-match "/" dir)))) group)
                     alist)))))
        gnus-newsrc-hashtb)
       (dolist (pair (nconc agent cache alist))