From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/45736 Path: main.gmane.org!not-for-mail From: Jason Merrill Newsgroups: gmane.emacs.gnus.general Subject: PATCH to gnus-binary-display-article Date: Fri, 19 Jul 2002 14:41:15 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1027086248 7138 127.0.0.1 (19 Jul 2002 13:44:08 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 19 Jul 2002 13:44:08 +0000 (UTC) Cc: Jason Merrill Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17VY3D-0001r1-00 for ; Fri, 19 Jul 2002 15:44:07 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17VY2g-0004FA-00; Fri, 19 Jul 2002 08:43:34 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 19 Jul 2002 08:43:59 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id IAA13472 for ; Fri, 19 Jul 2002 08:43:49 -0500 (CDT) Original-Received: (qmail 28075 invoked by alias); 19 Jul 2002 13:43:20 -0000 Original-Received: (qmail 28070 invoked from network); 19 Jul 2002 13:43:19 -0000 Original-Received: from dell-paw-3.cambridge.redhat.com (HELO executor.cambridge.redhat.com) (195.224.55.237) by gnus.org with SMTP; 19 Jul 2002 13:43:19 -0000 Original-Received: from prospero.cambridge.redhat.com (dell-paw-2.cambridge.redhat.com [195.224.55.226]) by executor.cambridge.redhat.com (Postfix) with ESMTP id 7B74AABB13; Fri, 19 Jul 2002 14:43:05 +0100 (BST) Original-Received: by prospero.cambridge.redhat.com (Postfix, from userid 4046) id 464EDF83C1; Fri, 19 Jul 2002 14:41:15 +0100 (BST) Original-To: ding@gnus.org Original-Lines: 29 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.1 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:45736 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:45736 --=-=-= A while back, I tried setting gnus-view-pseudos to 'not-confirm; it had no effect. This turned out to be because gnus-binary-display-article was overriding its value. Fixed thus. 2001-11-04 Jason Merrill * gnus-salt.el (gnus-binary-display-article): Respect an existing value for gnus-view-pseudos. --=-=-= Content-Type: text/x-patch Content-Disposition: inline *** gnus-salt.el.~1~ Fri Jul 19 13:07:23 2002 --- gnus-salt.el Sun May 19 03:59:26 2002 *************** This must be bound to a button-down mous *** 368,374 **** (defun gnus-binary-display-article (article &optional all-header) "Run ARTICLE through the binary decode functions." (when (gnus-summary-goto-subject article) ! (let ((gnus-view-pseudos 'automatic)) (gnus-uu-decode-uu)))) (defun gnus-binary-show-article (&optional arg) --- 368,374 ---- (defun gnus-binary-display-article (article &optional all-header) "Run ARTICLE through the binary decode functions." (when (gnus-summary-goto-subject article) ! (let ((gnus-view-pseudos (or gnus-view-pseudos 'automatic))) (gnus-uu-decode-uu)))) (defun gnus-binary-show-article (&optional arg) --=-=-=--