* gnus-art.el (article-hide-headers): Inhibit read-only stuff.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 21 Jun 2006 18:14:23 +0000 (18:14 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 21 Jun 2006 18:14:23 +0000 (18:14 +0000)
* gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
articles.

lisp/ChangeLog
lisp/gnus-art.el
lisp/gnus-group.el

index 18d35b5..2ddb7b5 100644 (file)
@@ -1,3 +1,10 @@
+2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-art.el (article-hide-headers): Inhibit read-only stuff. 
+
+       * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
+       articles. 
+
 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * message.el (message-cite-reply-above): New variable.
index 7702f05..fb5c140 100644 (file)
@@ -1842,7 +1842,7 @@ Initialized from `text-mode-syntax-table.")
   (interactive)
   ;; This function might be inhibited.
   (unless gnus-inhibit-hiding
-    (let ((inhibit-read-only nil)
+    (let ((inhibit-read-only t)
          (case-fold-search t)
          (max (1+ (length gnus-sorted-header-list)))
          (inhibit-point-motion-hooks t)
index 8251f5b..70d7600 100644 (file)
@@ -2124,13 +2124,14 @@ be permanent."
 ;;;###autoload
 (defun gnus-fetch-group (group &optional articles)
   "Start Gnus if necessary and enter GROUP.
+If ARTICLES, display those articles.
 Returns whether the fetching was successful or not."
   (interactive (list (completing-read "Group name: " gnus-active-hashtb
                                      nil nil nil nil
                                      (group-name-at-point))))
   (unless (get-buffer gnus-group-buffer)
     (gnus-no-server))
-  (gnus-group-read-group articles nil group))
+  (gnus-group-read-group (if articles nil t) nil group articles))
 
 ;;;###autoload
 (defun gnus-fetch-group-other-frame (group)