2004-07-29 KOSEKI Yoshinori <kose@meadowy.org>
- * lisp/gnus-namazu.el (gnus-namazu/make-directory-table): Fix normalization
- of dir (remove drive letter).
+ * lisp/gnus-namazu.el (gnus-namazu/make-directory-table): Fix
+ normalization of dir (remove drive letter).
2004-07-20 TAKAHASHI Kaoru <kaoru@kaisei.org>
+2004-07-30 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
+
+ * gnus-namazu.el (gnus-namazu/make-directory-table): Treat drive
+ letters when calcurating pathnames of remote groups.
+ From KOSEKI Yoshinori <kose@meadowy.org> (tiny change).
+
2004-05-27 Simon Josefsson <jas@extundo.com>
* starttls.el: Moved to ../lisp/.
(setq dir (nnmail-group-pathname
(substring group (match-end 0))
"/"))
- (push (cons (concat (cdr pair)
- (substring dir (+ 1 (string-match "/" dir)))) group)
+ (push (cons (concat (cdr pair)
+ ;; nnmail-group-pathname() on some
+ ;; systems returns pathnames which
+ ;; have drive letters at their top.
+ (substring dir (1+ (string-match "/" dir))))
+ group)
alist)))))
gnus-newsrc-hashtb)
(dolist (pair (nconc agent cache alist))