From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Bug in emacsbug.el Date: Wed, 06 Dec 2006 01:05:03 +0100 Message-ID: <4576092F.3090505@student.lu.se> References: <457597D8.9090401@student.lu.se> <87r6vez4l3.fsf@lrde.org> <4575FB91.5090405@student.lu.se> <874ps9zz5r.fsf@lrde.org> NNTP-Posting-Host: dough.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1165363524 30469 80.91.229.10 (6 Dec 2006 00:05:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 6 Dec 2006 00:05:24 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 06 01:05:23 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by dough.gmane.org with esmtp (Exim 4.50) id 1GrkHl-0002q6-SJ for ged-emacs-devel@m.gmane.org; Wed, 06 Dec 2006 01:05:18 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GrkHl-0000vN-D6 for ged-emacs-devel@m.gmane.org; Tue, 05 Dec 2006 19:05:17 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GrkHb-0000vH-P2 for emacs-devel@gnu.org; Tue, 05 Dec 2006 19:05:07 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GrkHb-0000v5-6T for emacs-devel@gnu.org; Tue, 05 Dec 2006 19:05:07 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GrkHa-0000v2-Vp for emacs-devel@gnu.org; Tue, 05 Dec 2006 19:05:07 -0500 Original-Received: from [80.76.149.213] (helo=ch-smtp02.sth.basefarm.net) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GrkHZ-0003H0-TA for emacs-devel@gnu.org; Tue, 05 Dec 2006 19:05:06 -0500 Original-Received: from c83-254-145-24.bredband.comhem.se ([83.254.145.24]:59851 helo=[192.168.123.121]) by ch-smtp02.sth.basefarm.net with esmtp (Exim 4.63) (envelope-from ) id 1GrkHY-0003M0-7H; Wed, 06 Dec 2006 01:05:04 +0100 User-Agent: Thunderbird 1.5.0.8 (Windows/20061025) Original-To: =?ISO-8859-1?Q?Micha=EBl_Cadilhac?= In-Reply-To: <874ps9zz5r.fsf@lrde.org> X-Scan-Result: No virus found in message 1GrkHY-0003M0-7H. X-Scan-Signature: ch-smtp02.sth.basefarm.net 1GrkHY-0003M0-7H b5d9d970833bd9b584c54413a776ea55 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:63334 Archived-At: Michaël Cadilhac wrote: > Lennart Borgman writes: > >>> Lennart Borgman writes: >>> >>>> I think this test in `report-emacs-bug' tests the wrong mail address: >>>> >>>> ;; Insert warnings for novice users. >>>> (when (string-match "@gnu\\.org^" reporting-address) > >> It is the regexp that is bad I think. It should probably be >> "@gnu\\.org$". > > Of course you are right! :-) Could someone with CVS knowledge please fix that little problem? >> But I noted more strange things in `report-emacs-bug'. There are a lot >> of statements like >> >> (put-text-property pos (point) 'face 'highlight) >> >> They does not seem to work. > > Well, AFAICT, it works but mail-mode does not seem to allow it. If you > call text-mode after (compose-mail), the highlight will be there (for > whatever reason I don't have the time to investigate). I tested in the scratch buffer and got the same result. However after I changed the mode to fundamental-mode the above statement worked.