From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57150 Path: main.gmane.org!not-for-mail From: Karl Chen Newsgroups: gmane.emacs.gnus.general Subject: bug? message.el `message-setup-1' mail-header-separator read-only Date: 28 Apr 2004 05:37:33 -0700 Sender: ding-owner@lists.math.uh.edu Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1083155994 15080 80.91.224.253 (28 Apr 2004 12:39:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 28 Apr 2004 12:39:54 +0000 (UTC) Original-X-From: ding-owner+M5690@lists.math.uh.edu Wed Apr 28 14:39:41 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BIoLl-0004Tw-00 for ; Wed, 28 Apr 2004 14:39:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1BIoKn-0007SG-00; Wed, 28 Apr 2004 07:38:41 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BIoKd-0007S8-00 for ding@lists.math.uh.edu; Wed, 28 Apr 2004 07:38:31 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BIoKb-00066p-P1 for ding@lists.math.uh.edu; Wed, 28 Apr 2004 07:38:29 -0500 Original-Received: from quack.quarl.org (c-24-7-69-21.client.comcast.net [24.7.69.21]) by justine.libertine.org (Postfix) with ESMTP id 869953A0042 for ; Wed, 28 Apr 2004 07:38:28 -0500 (CDT) Original-Received: from v-woof.quarl.org (gateway.quarl.org [192.168.1.1]) by quack.quarl.org (Postfix) with ESMTP id CFB9F1ABDE3 for ; Wed, 28 Apr 2004 05:37:47 -0700 (PDT) Original-Received: by v-woof.quarl.org (Postfix, from userid 1000) id 1F1E18079; Wed, 28 Apr 2004 05:37:36 -0700 (PDT) Original-Received: by v-woof.quarl.org (tmda-sendmail, from uid 1000); Wed, 28 Apr 2004 05:37:36 -0700 (PDT) Original-To: ding@gnus.org X-Quack-Archive: 1 Original-Lines: 27 X-Delivery-Agent: TMDA/1.0.2 (Bold Forbes) X-Primary-Address: quarl@quarl.org Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57150 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57150 Is the mail-header-separator text inserted by `message-setup-1' supposed to be read-only? It makes sense for it to be so, and the code actually sets it to NOT read-only, which seems useless since it would by default be read-only. The one-line patch below fixes it. diff -u /var/tmp/quarl/pkg/Gnus/gnus-5.10.6/lisp/message.el /tmp/buffer-content-12964U1r --- /var/tmp/quarl/pkg/Gnus/gnus-5.10.6/lisp/message.el 2004-04-28 05:35:45.000000000 -0700 +++ /tmp/buffer-content-12964U1r 2004-04-28 05:35:48.000000000 -0700 @@ -5465,7 +5465,7 @@ (progn (insert mail-header-separator "\n") (1- (point))) - 'read-only nil) + 'read-only t) (forward-line -1) (when (message-news-p) (when message-default-news-headers -- Karl 2004-04-28 05:29