X-Git-Url: https://cgit.sxemacs.org/?a=blobdiff_plain;f=lisp%2Fnnml.el;h=399008cec1b1eeb9999050c9722d77cbf00a2f6b;hb=cc52ad34d2922b013fd8026d0728617261979da6;hp=6282b25c5f3b7da438bba58328cb5fcb169a7e6a;hpb=3545f57dc4b4ecaa67ce31f2662be957edd8d238;p=gnus diff --git a/lisp/nnml.el b/lisp/nnml.el index 6282b25c5..399008cec 100644 --- a/lisp/nnml.el +++ b/lisp/nnml.el @@ -1,7 +1,7 @@ ;;; nnml.el --- mail spool access for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; Copyright (C) 1995-2011 Free Software +;; Foundation, Inc. ;; Authors: Didier Verna (adding compaction) ;; Simon Josefsson (adding MARKS) @@ -235,7 +235,11 @@ non-nil.") (nnheader-article-to-file-alist (setq gpath (nnml-group-pathname (car group-num) nil server)))))) - (setq path (concat gpath (int-to-string (cdr group-num))))) + (nnml-update-file-alist) + (setq path (concat gpath (if nnml-use-compressed-files + (cdr (assq (cdr group-num) + nnml-article-file-alist)) + (number-to-string (cdr group-num)))))) (setq path (nnml-article-to-file id))) (cond ((not path) @@ -1033,24 +1037,7 @@ Use the nov database for the current group if available." (nnml-possibly-change-directory group server) (unless nnml-marks-is-evil (nnml-open-marks group server) - (dolist (action actions) - (let ((range (nth 0 action)) - (what (nth 1 action)) - (marks (nth 2 action))) - (assert (or (eq what 'add) (eq what 'del) (eq what 'set)) nil - "Unknown request-set-mark action: %s" what) - (dolist (mark marks) - (setq nnml-marks - (gnus-update-alist-soft - mark - (cond - ((eq what 'add) - (gnus-range-add (cdr (assoc mark nnml-marks)) range) - ((eq what 'del) - (gnus-remove-from-range (cdr (assoc mark nnml-marks)) range)) - ((eq what 'set) - range))) - nnml-marks))))) + (setq nnml-marks (nnheader-update-marks-actions nnml-marks actions)) (nnml-save-marks group server)) nil)