From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel,gmane.emacs.gnus.general Subject: Re: hard-newline changes in lisp/gnus/message.el Date: Sat, 19 Nov 2005 14:07:11 -0500 Message-ID: <87sltstq1s.fsf@stupidchicken.com> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-Trace: sea.gmane.org 1132427335 7466 80.91.229.2 (19 Nov 2005 19:08:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 19 Nov 2005 19:08:55 +0000 (UTC) Cc: Gnus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 19 20:08:54 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EdY3V-0007UI-5a for ged-emacs-devel@m.gmane.org; Sat, 19 Nov 2005 20:07:21 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EdY3U-0000fI-GC for ged-emacs-devel@m.gmane.org; Sat, 19 Nov 2005 14:07:20 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EdY3K-0000fC-W3 for emacs-devel@gnu.org; Sat, 19 Nov 2005 14:07:11 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EdY3J-0000f0-Hz for emacs-devel@gnu.org; Sat, 19 Nov 2005 14:07:10 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EdY3J-0000ex-FE for emacs-devel@gnu.org; Sat, 19 Nov 2005 14:07:09 -0500 Original-Received: from [18.95.5.42] (helo=localhost.localdomain) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EdY3J-0006Hj-Ed for emacs-devel@gnu.org; Sat, 19 Nov 2005 14:07:09 -0500 Original-Received: by localhost.localdomain (Postfix, from userid 1000) id A2F2F1E4389; Sat, 19 Nov 2005 14:07:11 -0500 (EST) Original-To: Emacs development In-Reply-To: (Reiner Steib's message of "Fri, 18 Nov 2005 18:31:04 +0100") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:46270 gmane.emacs.gnus.general:61389 Archived-At: Reiner Steib writes: > when changing lisp/gnus/*.el, please keep in mind that this directory > is synced by Miles Bader with the (primary) Gnus repository on > gnus.org in order to simplify the process of including a new stable > Gnus version in Emacs. The stable version of Gnus (the v5-10 branch > in Gnus CVS) should be identical[1] to the version in Emacs CVS and it > should work with Emacs 20.7 and up and XEmacs 21.1 and up. > > It would be nice to discuss possibly controversial changes on > emacs-devel and ding@gnus.org (Gnus development list) before > committing. Sorry, I wasn't aware of the synching. > As for `hard-newline': Obviously `hard-newline' is not defined in > Emacs < 22. I'm not sure what's the best way to deal with this. I'd > suggest to define `message-hard-newline' in `message.el' as follows > and use it instead of `hard-newline'. Why not: (if (not (boundp hard-newline)) (defvar hard-newline (propertize "\n" 'hard t 'rear-nonsticky '(hard))))