From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Problem with file-local variables in uni-special-lowercase.el Date: Sat, 01 Jan 2022 11:00:08 +0200 Message-ID: <83lezzg7af.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20504"; mail-complaints-to="usenet@ciao.gmane.io" To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Jan 01 10:02:01 2022 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 1n3aH2-00059B-VC for ged-emacs-devel@m.gmane-mx.org; Sat, 01 Jan 2022 10:02:01 +0100 Original-Received: from localhost ([::1]:35004 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1n3aH2-0001sh-33 for ged-emacs-devel@m.gmane-mx.org; Sat, 01 Jan 2022 04:02:00 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:58968) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n3aFF-0000hT-01 for emacs-devel@gnu.org; Sat, 01 Jan 2022 04:00:09 -0500 Original-Received: from [2001:470:142:3::e] (port=55074 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n3aFE-0008WS-LZ for emacs-devel@gnu.org; Sat, 01 Jan 2022 04:00:08 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=Subject:To:From:Date:mime-version:in-reply-to: references; bh=uMwUUNNlsFEjYsGTrKq/9fElnNH0E/d6JkQ9CeEtGbg=; b=UFl4ljhpuRE0lE blR4aY40+p4kZQm0O6CTNotfWbSYrmg42I6jNgJFXryVWEGpLkUgq6MjThEDXtW8YaFwiqhFaMFNi d3Au1WQ73FHK693gx2d7mQmdeeOk1J35mUlLjEXZtJmOhmxzT9z2xu+F1bAMJQU/m4T82qaUIJn2p w5+/cNJ/HSl4WTdFkeIZQGKdqLCK9mDlM8EcbWz386MqJyj3CIo0xQmya4xFYTJdgPpnQleT/c3pb Em6Dt3CX6Naj0wGCJcUfc7oGCP0946DAU2yQkJ/yxl53GNs8/nTgwMfvkOjKToufJP/rBtgRe02Xx uPWWx0voNBRZyEGC172w==; Original-Received: from [87.69.77.57] (port=4022 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n3aFE-0003nO-LP for emacs-devel@gnu.org; Sat, 01 Jan 2022 04:00:08 -0500 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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:283789 Archived-At: There's some strange problem with this file: when building Emacs after it is updated, byte-compilation of various Lisp files fails with error message like this: File local-variables error: (error Recursive load /home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el /home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el /home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el /home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el /home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el) In toplevel form: international/mule.el:1833:8: Error: Recursive load: "/home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el", "/home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el", "/home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el", "/home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el", "/home/eliz/git/emacs/branch/lisp/international/uni-special-lowercase.el", "/home/eliz/git/emacs/branch/lisp/international/uni-special-uppercase.el" Makefile:290: recipe for target '../lisp/international/mule.elc' failed I guess we try to lower-case some parts of the file-local variables section, and that causes recursive load or something? I couldn't get around this except by removing the file-local vars from the file.