From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: master 45a1653: ; Fix last change to bibtex.el Date: Tue, 17 Nov 2020 20:42:50 -0500 Message-ID: References: <20201116233108.21940.22514@vcs0.savannah.gnu.org> <20201116233110.4E83E209DE@vcs0.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="35079"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) Cc: "Basil L. Contovounesios" To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Nov 18 02:43:33 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kfCVR-00090M-CB for ged-emacs-devel@m.gmane-mx.org; Wed, 18 Nov 2020 02:43:33 +0100 Original-Received: from localhost ([::1]:41940 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kfCVQ-0001F2-CJ for ged-emacs-devel@m.gmane-mx.org; Tue, 17 Nov 2020 20:43:32 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37968) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kfCUr-0000pJ-63 for emacs-devel@gnu.org; Tue, 17 Nov 2020 20:42:57 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:39900) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kfCUq-0003qK-FN; Tue, 17 Nov 2020 20:42:56 -0500 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1kfCUo-0000QC-7T; Tue, 17 Nov 2020 20:42:54 -0500 X-Spook: tempest ASDIC Radicals Mitigation clandestine Bletchley X-Ran: =\ (Basil L. Contovounesios's message of "Mon, 16 Nov 2020 18:31:09 -0500 (EST)") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:259326 Archived-At: > commit 45a1653afa8eb0032908bc94b5466604f84805d5 > diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el > index b69d715..d53cfa0 100644 > --- a/lisp/textmodes/bibtex.el > +++ b/lisp/textmodes/bibtex.el [...] > - (function :tag "Conversion function"))) > -(make-variable-buffer-local 'bibtex-unify-case-convert) > + (function :tag "Conversion function")) > + :local t) After this change: bibtex-unify-case-convert: Its value is nil Original value was =E2=80=98identity=E2=80=99 The "nil" value causes a test failure: https://hydra.nixos.org/build/130666= 989 (Perhaps defcustom's recently added :local feature, of which this is the only user, is broken.)