aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGnus developers2010-10-22 01:39:13 +0000
committerKatsumi Yamaoka2010-10-22 01:39:13 +0000
commite0da801ae4b5791480bce39e1d4337e02f3bcb7a (patch)
tree2d4c063ddd706fc1c386263c1ff47753f1bf4966
parentd806c8722219298e9342c39138abc9b26dcb0d9b (diff)
downloademacs-e0da801ae4b5791480bce39e1d4337e02f3bcb7a.tar.gz
emacs-e0da801ae4b5791480bce39e1d4337e02f3bcb7a.zip
gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to gnus-group-completing-read.
gnus-start.el (gnus-read-active-file-1): Don't add method to gnus-have-read-active-file if it's already been in.
-rw-r--r--lisp/gnus/ChangeLog10
-rw-r--r--lisp/gnus/gnus-group.el2
-rw-r--r--lisp/gnus/gnus-start.el2
3 files changed, 12 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 0e41b71b2ce..e6decde4b6f 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,13 @@
12010-10-22 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * gnus-start.el (gnus-read-active-file-1): Don't add method to
4 gnus-have-read-active-file if it's already been in.
5
62010-10-22 Tom Tromey <tromey@redhat.com>
7
8 * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
9 gnus-group-completing-read.
10
12010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org> 112010-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 12
3 * message.el (message-mode-map): Don't bind M-; to comment region, to 13 * message.el (message-mode-map): Don't bind M-; to comment region, to
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el
index 6cd8f75d94c..7152c18d145 100644
--- a/lisp/gnus/gnus-group.el
+++ b/lisp/gnus/gnus-group.el
@@ -3676,7 +3676,7 @@ If given numerical prefix, toggle the N next groups."
3676Killed newsgroups are subscribed. If SILENT, don't try to update the 3676Killed newsgroups are subscribed. If SILENT, don't try to update the
3677group line." 3677group line."
3678 (interactive (list (gnus-group-completing-read 3678 (interactive (list (gnus-group-completing-read
3679 nil (gnus-read-active-file-p)))) 3679 nil nil (gnus-read-active-file-p))))
3680 (let ((newsrc (gnus-group-entry group))) 3680 (let ((newsrc (gnus-group-entry group)))
3681 (cond 3681 (cond
3682 ((string-match "^[ \t]*$" group) 3682 ((string-match "^[ \t]*$" group)
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el
index 26da22e478a..dafcd642727 100644
--- a/lisp/gnus/gnus-start.el
+++ b/lisp/gnus/gnus-start.el
@@ -2090,7 +2090,7 @@ If SCAN, request a scan of that group as well."
2090 (gnus-message 5 "%s" mesg) 2090 (gnus-message 5 "%s" mesg)
2091 (gnus-active-to-gnus-format method gnus-active-hashtb nil t) 2091 (gnus-active-to-gnus-format method gnus-active-hashtb nil t)
2092 ;; We mark this active file as read. 2092 ;; We mark this active file as read.
2093 (push method gnus-have-read-active-file) 2093 (add-to-list 'gnus-have-read-active-file method)
2094 (gnus-message 5 "%sdone" mesg))))))) 2094 (gnus-message 5 "%sdone" mesg)))))))
2095 2095
2096(defun gnus-read-active-file-2 (groups method) 2096(defun gnus-read-active-file-2 (groups method)