(gnus-summary-show-article): Take `t' as the arg to mean "raw".
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 4 Nov 2010 20:26:19 +0000 (21:26 +0100)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 4 Nov 2010 20:26:19 +0000 (21:26 +0100)
lisp/ChangeLog
lisp/gnus-sum.el

index 288c1bd..482668c 100644 (file)
@@ -1,5 +1,8 @@
 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
+       "raw".
+
        * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
        if it's already selected.
 
index 0f49ed8..aed707d 100644 (file)
@@ -9423,7 +9423,8 @@ C-u g', show the raw article."
    ((not arg)
     ;; Select the article the normal way.
     (gnus-summary-select-article nil 'force))
-   ((equal arg '(16))
+   ((or (equal arg '(16))
+       (eq arg t))
     ;; C-u C-u g
     ;; We have to require this here to make sure that the following
     ;; dynamic binding isn't shadowed by autoloading.