From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/77478 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.gnus.general Subject: Re: [gnus git] branch master updated: n0-13-65-gece58ab =2= Autoload `password-in-cache-p'. ; Try to fix XEmacs message-options buffer-local issue. Date: Thu, 03 Mar 2011 05:20:25 -0600 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <87ei6o1mdi.fsf@lifelogs.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1299151256 699 80.91.229.12 (3 Mar 2011 11:20:56 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 3 Mar 2011 11:20:56 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M25801@lists.math.uh.edu Thu Mar 03 12:20:52 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 1Pv6aR-0002LE-Oy for ding-account@gmane.org; Thu, 03 Mar 2011 12:20:52 +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 1Pv6aJ-0003Yq-HV; Thu, 03 Mar 2011 05:20:43 -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 1Pv6aH-0003YS-Ty for ding@lists.math.uh.edu; Thu, 03 Mar 2011 05:20:41 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1Pv6aG-0007vG-34 for ding@lists.math.uh.edu; Thu, 03 Mar 2011 05:20:41 -0600 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1Pv6aE-0006d6-Ln for ding@gnus.org; Thu, 03 Mar 2011 12:20:38 +0100 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Pv6aE-0002Ev-1N for ding@gnus.org; Thu, 03 Mar 2011 12:20:38 +0100 Original-Received: from c-67-186-102-106.hsd1.il.comcast.net ([67.186.102.106]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Mar 2011 12:20:38 +0100 Original-Received: from tzz by c-67-186-102-106.hsd1.il.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Mar 2011 12:20:38 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 30 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: c-67-186-102-106.hsd1.il.comcast.net X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6;d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" User-Agent: Gnus/5.110014 (No Gnus v0.14) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:JTL0IWjiRxP3paOyqNB2P50SUgY= X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:77478 Archived-At: On Thu, 03 Mar 2011 11:44:43 +0100 Julien Danjou wrote: JD> On Wed, Mar 02 2011, Ted Zlatanov wrote: >> --- a/lisp/message.el >> +++ b/lisp/message.el >> @@ -1858,7 +1858,10 @@ You must have the \"hashcash\" binary installed, see `hashcash-path'." >> >> (defvar message-options nil >> "Some saved answers when sending message.") >> -(make-variable-buffer-local 'message-options) >> + >> +(if (featurep 'xemacs) >> + (make-local-variable 'message-options) >> + (make-variable-buffer-local 'message-options)) JD> I think you reverted the previous code I wrote wrong. That should be JD> (unless (featurep 'xemacs) JD> (make-variable-buffer-local 'message-options)) JD> Note that I'm not sure it's a good hack. At least we should add a JD> comment on why… And let Daiki find out if this is a real bug. OK, I don't know that code so it's entirely possible I did something stupid. I was just duplicating the behavior from before your change (which Michael Piotrowski identified as the culprit) for XEmacs. Let's just keep XEmacs users functional, otherwise feel free to make any changes you think necessary. Ted