]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge changes made in Gnus trunk.
authorGnus developers <ding@gnus.org>
Sat, 23 Oct 2010 00:01:49 +0000 (00:01 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sat, 23 Oct 2010 00:01:49 +0000 (00:01 +0000)
gnus.texi (Subscription Commands): Mention that you can also subscribe to new groups via the Server buffer, which is probably more convenient when subscribing to many groups.
gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point instead of the summary one.
shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.

doc/misc/ChangeLog
doc/misc/gnus.texi
lisp/gnus/ChangeLog
lisp/gnus/gnus-group.el
lisp/gnus/shr.el

index a87fb9e610e489ea786e659707418e50ffaca68e..9c76895070290380269f73d80f7f138c13c997bb 100644 (file)
@@ -1,3 +1,9 @@
+2010-10-22  Tassilo Horn  <tassilo@member.fsf.org>
+
+       * gnus.texi (Subscription Commands): Mention that you can also
+       subscribe to new groups via the Server buffer, which is probably more
+       convenient when subscribing to many groups.
+
 2010-10-21  Julien Danjou  <julien@danjou.info>
 
        * message.texi (Message Headers): Allow message-default-headers to be a
index 7b642aefda0a05cf546c5c617227b16940cc099e..a45ad232e6503698698653d77ca79ef294a7b293 100644 (file)
@@ -2211,6 +2211,12 @@ selected.
 @section Subscription Commands
 @cindex subscription
 
+The following commands allow for managing your subscriptions in the
+Group buffer.  If you want to subscribe to many groups, it's probably
+more convenient to go to the @ref{Server Buffer}, and choose the
+server there using @kbd{RET} or @kbd{SPC}.  Then you'll have the
+commands listed in @ref{Browse Foreign Server} at hand.
+
 @table @kbd
 
 @item S t
index 7c3b91cbea7c1fc4d0011744a9a81a3bb358d856..699e1b6da5aba1e5f6ad51dd13002fb607e33df2 100644 (file)
@@ -1,3 +1,10 @@
+2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
+
+       * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
+       instead of the summary one.
+
 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * mml.el (mml-preview): Work properly when editing article.
index 7152c18d1455956ae681e2df0942bfa8ebbfcde6..7720c1cc7e6d6f1e7adddedec41c7f2fae53b564 100644 (file)
@@ -1887,7 +1887,7 @@ If FIRST-TOO, the current line is also eligible as a target."
       (unless no-advance
        (gnus-group-next-group 1))
       (decf n))
-    (gnus-summary-position-point)
+    (gnus-group-position-point)
     n))
 
 (defun gnus-group-unmark-group (n)
@@ -4009,7 +4009,7 @@ If DONT-SCAN is non-nil, scan non-activated groups as well."
       (goto-char beg))
     (when gnus-goto-next-group-when-activating
       (gnus-group-next-unread-group 1 t))
-    (gnus-summary-position-point)
+    (gnus-group-position-point)
     ret))
 
 (defun gnus-group-fetch-control (group)
index a25fc2c262a7eb1b9318698453984d950de09797..6646cecb2fafda1ced30b65a7a28d4b334762ba6 100644 (file)
@@ -487,7 +487,8 @@ Return a string with image data."
   (browse-url-url-encode-chars url "[)$ ]"))
 
 (defun shr-tag-img (cont)
-  (when cont
+  (when (and cont
+            (cdr (assq :src cont)))
     (when (and (> (current-column) 0)
               (not (eq shr-state 'image)))
       (insert "\n"))