From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/75487 Path: news.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: Line-wrap on by default: how do I turn it off? Date: Sat, 01 Jan 2011 22:46:34 +0100 Organization: Probably a good idea Message-ID: <87zkrk9u11.fsf@dod.no> References: <87oc80y8w5.fsf@dod.no> <87d3ogy2v5.fsf@dod.no> <878vz4y2hc.fsf_-_@dod.no> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1293918458 11238 80.91.229.12 (1 Jan 2011 21:47:38 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 1 Jan 2011 21:47:38 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M23838@lists.math.uh.edu Sat Jan 01 22:47:33 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PZ9IS-0000vT-QS for ding-account@gmane.org; Sat, 01 Jan 2011 22:47:33 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1PZ9Ht-00007b-C2; Sat, 01 Jan 2011 15:46:57 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1PZ9Hq-00007M-O9 for ding@lists.math.uh.edu; Sat, 01 Jan 2011 15:46:54 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1PZ9Hl-0006BP-85 for ding@lists.math.uh.edu; Sat, 01 Jan 2011 15:46:54 -0600 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1PZ9Hi-0007nU-Vn for ding@gnus.org; Sat, 01 Jan 2011 22:46:46 +0100 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PZ9Hh-0000XC-Pr for ding@gnus.org; Sat, 01 Jan 2011 22:46:45 +0100 Original-Received: from cm-84.208.226.192.getinternet.no ([84.208.226.192]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 01 Jan 2011 22:46:45 +0100 Original-Received: from sb by cm-84.208.226.192.getinternet.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 01 Jan 2011 22:46:45 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 22 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: cm-84.208.226.192.getinternet.no Mail-Copies-To: never User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.2 (gnu/linux) Cancel-Lock: sha1:39Rds4mf1l0e9sXsB3/yKhXX6S8= X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:75487 Archived-At: The behaviour seems to have been turned on by this change: commit f2d0a4889766f0387f6423f52502ea4842f83846 Author: Lars Magne Ingebrigtsen Date: Sun Oct 31 22:06:08 2010 +0100 Change default to all text/plain sections. And the diff on the line in question, is: --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -1590,7 +1590,7 @@ predicate. See Info node `(gnus)Customizing Articles'." :link '(custom-manual "(gnus)Customizing Articles") :type gnus-article-treat-custom) -(defcustom gnus-treat-fill-long-lines nil +(defcustom gnus-treat-fill-long-lines '(typep "text/plain") "Fill long lines. Valid values are nil, t, `head', `first', `last', an integer or a predicate. See Info node `(gnus)Customizing Articles'." So, a customize back to nil, should do the trick. I will try.