* gnus.el (gnus-article-unpropagated-mark-lists): Don't propagate
authorShengHuo ZHU <zsh@cs.rochester.edu>
Mon, 11 Feb 2002 21:28:46 +0000 (21:28 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Mon, 11 Feb 2002 21:28:46 +0000 (21:28 +0000)
bookmark, because update-mark doesn't handle it correctly.

lisp/ChangeLog
lisp/gnus-soup.el
lisp/gnus.el

index cdc0d9b..5184862 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-11  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * gnus.el (gnus-article-unpropagated-mark-lists): Don't propagate
+       bookmark, because update-mark doesn't handle it correctly.
+
 2002-02-09  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * gnus-soup.el (gnus-soup-send-packet): Send news and mail
index 2565448..0f15242 100644 (file)
@@ -1,6 +1,6 @@
 ;;; gnus-soup.el --- SOUP packet writing support for Gnus
 
-;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000
+;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002
 ;;     Free Software Foundation, Inc.
 
 ;; Author: Per Abrahamsen <abraham@iesd.auc.dk>
index 9dad7d7..d08491f 100644 (file)
@@ -1154,7 +1154,7 @@ variable instead."
 This is a list where each element is a complete select method (see
 `gnus-select-method').
 
-If, for instance, you want to read your mail with the nnml backend,
+If, for instance, you want to read your mail with the nnml back end,
 you could set this variable:
 
 \(setq gnus-secondary-select-methods '((nnml \"\")))"
@@ -1803,7 +1803,7 @@ Putting (gnus-agentize) in ~/.gnus is obsolete by (setq gnus-agent t)."
 (defvar gnus-agent-covered-methods nil)
 
 (defvar gnus-command-method nil
-  "Dynamically bound variable that says what the current backend is.")
+  "Dynamically bound variable that says what the current back end is.")
 
 (defvar gnus-current-select-method nil
   "The current method for selecting a newsgroup.")
@@ -1864,12 +1864,13 @@ Putting (gnus-agentize) in ~/.gnus is obsolete by (setq gnus-agent t)."
 ;; `download' is a agent flag private to each gnus installation
 ;; `unsend' are for nndraft groups only
 ;; `score' is not a proper mark
+;; `bookmark': don't propagated it, or fix the bug in update-mark.
 (defconst gnus-article-unpropagated-mark-lists
-  '(seen cache download unsend score)
-  "Marks that shouldn't be propagated to backends.
-Typical marks are those that make no sense in a standalone backend,
+  '(seen cache download unsend score bookmark)
+  "Marks that shouldn't be propagated to back ends.
+Typical marks are those that make no sense in a standalone back end,
 such as a mark that says whether an article is stored in the cache
-\(which doesn't make sense in a standalone backend).")
+\(which doesn't make sense in a standalone back end).")
 
 (defvar gnus-headers-retrieved-by nil)
 (defvar gnus-article-reply nil)