From: Lars Magne Ingebrigtsen Date: Thu, 4 Nov 2010 20:26:19 +0000 (+0100) Subject: (gnus-summary-show-article): Take `t' as the arg to mean "raw". X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=b19e0ae5bb1ac1093303a8bc0725494c1f6a416e (gnus-summary-show-article): Take `t' as the arg to mean "raw". --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 288c1bd22..482668c08 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-11-04 Lars Magne Ingebrigtsen + * 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. diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el index 0f49ed84f..aed707d6c 100644 --- a/lisp/gnus-sum.el +++ b/lisp/gnus-sum.el @@ -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.