From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.devel Subject: Re: master 644d31a 2/2: Replace the usage of an obsolete function in auth-source.el Date: Tue, 13 Oct 2015 09:36:28 +0900 Organization: Emacsen advocacy group Message-ID: References: <20151011210306.16935.15935@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1444696620 4337 80.91.229.3 (13 Oct 2015 00:37:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 Oct 2015 00:37:00 +0000 (UTC) Cc: Nicolas Petton To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 13 02:36:51 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZlnaF-0000Ao-3f for ged-emacs-devel@m.gmane.org; Tue, 13 Oct 2015 02:36:51 +0200 Original-Received: from localhost ([::1]:59576 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlnaD-0001ji-NR for ged-emacs-devel@m.gmane.org; Mon, 12 Oct 2015 20:36:49 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38865) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zlna2-0001jd-Am for emacs-devel@gnu.org; Mon, 12 Oct 2015 20:36:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZlnZy-0005zT-A1 for emacs-devel@gnu.org; Mon, 12 Oct 2015 20:36:38 -0400 Original-Received: from [216.246.47.56] (port=54079 helo=memphis.hostforweb.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlnZy-0005zP-5l for emacs-devel@gnu.org; Mon, 12 Oct 2015 20:36:34 -0400 Original-Received: from s70.gtokyofl21.vectant.ne.jp ([202.215.75.70]:63161 helo=localhost) by memphis.hostforweb.net with esmtpsa (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.85) (envelope-from ) id 1ZlnZw-0036Gd-Go; Mon, 12 Oct 2015 19:36:32 -0500 X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.130014 (=?utf-8?Q?=E7=9C=9F?= Gnus v0.14) Emacs/25.0.50 (i686-pc-cygwin) Cancel-Lock: sha1:TplnaurjDJycu+zZecnFnkb/ZeM= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - memphis.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Get-Message-Sender-Via: memphis.hostforweb.net: authenticated_id: yamaokac/only user confirmed/virtual account not confirmed X-Source: X-Source-Args: X-Source-Dir: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 216.246.47.56 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:191414 Archived-At: Hi, On Sun, 11 Oct 2015 21:03:07 +0000, Nicolas Petton wrote: > * lisp/gnus/auth-source.el (auth-source-epa-make-gpg-token): Replace an > usage of `epg-context-set-armor' with `setf'. [...] > - (epg-context-set-armor context t) > + (setf (epg-context-armor context) t) This doesn't seem to be expanded properly when building Emacs: In end of data: gnus/auth-source.el:2145:1:Warning: the function `(setf epg-context-armor)' is not known to be defined. How do we fix it? Similarly old Emacsen fail on compiling this because of an error (I merged the change to the Gnus git master): (Emacs 23.2) In toplevel form: auth-source.el:1161:47:Error: No setf-method known for epg-context-armor (XEmacs 21.5) While compiling auth-source-epa-make-gpg-token in file auth-source.el: !! error (("No setf-method known for epg-context-armor")) Whatever is done in Emacs master, the change might have to be reverted in only Gnus master separately from Emacs master, I think. Thanks.