# HG changeset patch # User Katsumi Yamaoka # Date 1281695956 0 # Node ID f5fa348fd8ebf02dd4826ec9f8f0eca6608a9b35 # Parent 410b495bd9bef3947c6a6591d98b0b0851eecec7 Add new gnus-sync.el library. From Ted Zlatanov . * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'. * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and renamed from `gnus-registry-grep-in-list'. * gnus-sync.el: New library for synchronization of marks. diff -r 410b495bd9be -r f5fa348fd8eb lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Fri Aug 13 10:32:35 2010 +0000 +++ b/lisp/gnus/ChangeLog Fri Aug 13 10:39:16 2010 +0000 @@ -1,5 +1,12 @@ 2010-08-12 Teodor Zlatanov + * gnus-sync.el: New library for synchronization of marks. + + * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and + renamed from `gnus-registry-grep-in-list'. + + * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'. + * gnus-start.el (gnus-start-draft-setup): Make it interactive. 2010-08-06 Katsumi Yamaoka diff -r 410b495bd9be -r f5fa348fd8eb lisp/gnus/gnus-registry.el --- a/lisp/gnus/gnus-registry.el Fri Aug 13 10:32:35 2010 +0000 +++ b/lisp/gnus/gnus-registry.el Fri Aug 13 10:39:16 2010 +0000 @@ -661,10 +661,10 @@ "Determines if a group name should be followed. Consults `gnus-registry-unfollowed-groups' and `nnmail-split-fancy-with-parent-ignore-groups'." - (not (or (gnus-registry-grep-in-list + (not (or (gnus-grep-in-list group gnus-registry-unfollowed-groups) - (gnus-registry-grep-in-list + (gnus-grep-in-list group nnmail-split-fancy-with-parent-ignore-groups)))) @@ -745,14 +745,6 @@ (assoc article (gnus-data-list nil))))) nil)) -(defun gnus-registry-grep-in-list (word list) -"Find if a WORD matches any regular expression in the given LIST." - (when (and word list) - (catch 'found - (dolist (r list) - (when (string-match r word) - (throw 'found r)))))) - (defun gnus-registry-do-marks (type function) "For each known mark, call FUNCTION for each cell of type TYPE. diff -r 410b495bd9be -r f5fa348fd8eb lisp/gnus/gnus-util.el --- a/lisp/gnus/gnus-util.el Fri Aug 13 10:32:35 2010 +0000 +++ b/lisp/gnus/gnus-util.el Fri Aug 13 10:39:16 2010 +0000 @@ -1297,6 +1297,14 @@ (setq alist (delq entry alist))) alist))) +(defun gnus-grep-in-list (word list) + "Find if a WORD matches any regular expression in the given LIST." + (when (and word list) + (catch 'found + (dolist (r list) + (when (string-match r word) + (throw 'found r)))))) + (defmacro gnus-pull (key alist &optional assoc-p) "Modify ALIST to be without KEY." (unless (symbolp alist)