From unknown Thu Jun 19 13:59:53 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#78780 <78780@debbugs.gnu.org> To: bug#78780 <78780@debbugs.gnu.org> Subject: Status: 31.0.50; Directory local variables not effective when loading Elisp file Reply-To: bug#78780 <78780@debbugs.gnu.org> Date: Thu, 19 Jun 2025 20:59:53 +0000 retitle 78780 31.0.50; Directory local variables not effective when loading= Elisp file reassign 78780 emacs submitter 78780 =C3=93scar Fuentes severity 78780 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 13 07:53:56 2025 Received: (at submit) by debbugs.gnu.org; 13 Jun 2025 11:53:57 +0000 Received: from localhost ([127.0.0.1]:43197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1uQ2yq-0002gO-ER for submit@debbugs.gnu.org; Fri, 13 Jun 2025 07:53:56 -0400 Received: from lists.gnu.org ([2001:470:142::17]:54046) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1uQ2yl-0002g8-H6 for submit@debbugs.gnu.org; Fri, 13 Jun 2025 07:53:52 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1uQ2yf-0004fw-2m for bug-gnu-emacs@gnu.org; Fri, 13 Jun 2025 07:53:45 -0400 Received: from mail.eclipso.de ([217.69.254.104]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1uQ2yb-000660-87 for bug-gnu-emacs@gnu.org; Fri, 13 Jun 2025 07:53:44 -0400 X-ESMTP-Authenticated-User: 000D6BEA From: =?utf-8?Q?=C3=93scar?= Fuentes DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eclipso.de; s=mail; t=1749815615; bh=cGxl6L0U4o5N52ScTwuTj9Lz8y6uF8nRC1uApLiU7WM=; h=From:To:Subject:Date:From; b=lEeTgkJRy8Vg3H97svBrK/hr1VGHpRygOHkYNRIbeCyN4VP5Ipm042KOoDrE+1VHD 2dL1v28p5x7asqSKlqLZDogutVDa1FMzjCUVFA/jkLnSP3VAOfF0lVgzZSPF7snEr+ Zd1fWBh939xYGzyiVq+HqHy6jR/g9Xx3Dipkq1+AclBq5mFMrkRJaQmgeUlXiuivi5 dXhTBBn2KSbMhS5h1FlZUQd6ueUDMajIp5m/cg3cV9ceqUI5zglnVXVSBOEDFOx+VM MNWz8WahJN6DJ71LsQhA5/kEGb3tixTlPClL0nIhavAIPPFkbpY6nGZ5xWbseIIIg+ PItP8P0JMQCtg== To: bug-gnu-emacs@gnu.org Subject: 31.0.50; Directory local variables not effective when loading Elisp file X-Debbugs-Cc: Date: Fri, 13 Jun 2025 13:53:34 +0200 Message-ID: <87tt4jn9hd.fsf@telefonica.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=217.69.254.104; envelope-from=oscarfv@eclipso.eu; helo=mail.eclipso.de X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) In ~/elisp/singles I created this .dir-locals.el file: ((nil . ((warning-suppress-log-types . '(missing-lexbind-cookie))))) Then emacs -Q and eval this: (load "~/elisp/singles/buffer-flip.el") That file does not contain the lexical-binding cookie. The *Warnings* file pops out: Warning (files): Missing =E2=80=98lexical-binding=E2=80=99 cookie in "~/elisp/singles/buffer-flip.el". If I visit the file Emacs asks about applying .dir-locals ("The local variables list in /home/oscar/elisp/singles or .dir-locals.el contains values..."), press "y" and then C-h v warning-suppress-log-types warning-suppress-log-types is a variable defined in =E2=80=98warnings.el=E2= =80=99. Its value is '((missing-lexbind-cookie)) Original value was nil Local in buffer buffer-flip.el; global value is nil It seems that .dir-locals.el is ignored when Emacs load files on the directory. I'm not sure it should, as asking for the user's permission when the file is loaded (usually at start time) is quite inconvenient, and on some scenarios there is no user present (--daemon) In GNU Emacs 31.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo version 1.18.4) of 2025-06-08 built on sky Repository revision: f90cee6f761b0c2bffcfa64556284884c0f7348f Repository branch: igc Windowing system distributor 'The X.Org Foundation', version 11.0.12101016 System Description: Debian GNU/Linux 13 (trixie) Configured using: 'configure 'CPPFLAGS=3D-O2 -fno-omit-frame-pointer -g3' CPPFLAGS=3D-I/home/oscar/dev/include/mps LDFLAGS=3D-L/home/oscar/dev/other/mps/code --with-native-compilation --with-tree-sitter --without-toolkit-scroll-bars --with-x-toolkit=3Dlucid --with-modules --without-imagemagick --with-mps=3Dyes' Configured features: CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 MODULES MPS NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG SECCOMP SOUND SQLITE3 THREADS TIFF TREE_SITTER WEBP X11 XAW3D XDBE XIM XINERAMA XINPUT2 XPM XRANDR LUCID ZLIB From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 13 11:30:11 2025 Received: (at 78780) by debbugs.gnu.org; 13 Jun 2025 15:30:11 +0000 Received: from localhost ([127.0.0.1]:48424 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1uQ6M5-0005Ot-9X for submit@debbugs.gnu.org; Fri, 13 Jun 2025 11:30:11 -0400 Received: from mail.eclipso.de ([217.69.254.104]:46618) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1uQ6M0-0005M5-IE for 78780@debbugs.gnu.org; Fri, 13 Jun 2025 11:30:06 -0400 X-ESMTP-Authenticated-User: 000D6BEA From: =?utf-8?Q?=C3=93scar?= Fuentes DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eclipso.de; s=mail; t=1749828597; bh=cVp3Jgw9OillDYcj0kAK+PmnO4jf0gMyrQG+Wfve9HY=; h=From:To:Subject:In-Reply-To:References:Date:From; b=LJ5DWUBtvgKXizv6xuEGJir3sC2ceLx6ZHkItYvGReC37FGuUPBPE0zYPIFo1YimY CbYuTvYsejsPLXUaQyNFU9AF1ZMBvqnqDnUBbBJdUWyDnr+XfLH+Wt14JyKmUvSV7c AqSiIjwUmYinGl1o9wDNQuzgt4eTIWSTGlLvIAWAPR5wVZ+UHB5InQKuv+ENweVNGO sAFPET8WSPNDGzMS7UcPU0ug0xi/9SI7u5zGIlQ6EiljAKAhInpi6Utdz/20Iu3mar ByIJpVhxIQ8+KZ6RdJ8x2M55/uolQQyx7W1bWI1vQuQKfrhPTkmL7b8zmXdfl779Ce 2m1ysGdTdwAug== To: 78780@debbugs.gnu.org Subject: Re: bug#78780: 31.0.50; Directory local variables not effective when loading Elisp file In-Reply-To: <87tt4jn9hd.fsf@telefonica.net> References: <87tt4jn9hd.fsf@telefonica.net> Date: Fri, 13 Jun 2025 17:29:56 +0200 Message-ID: <87ecvnmzgr.fsf@telefonica.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 78780 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) =C3=93scar Fuentes via "Bug reports for GNU Emacs, the Swiss army knife of text editors" writes: > In ~/elisp/singles I created this .dir-locals.el file: > > ((nil > . ((warning-suppress-log-types > . '(missing-lexbind-cookie))))) For the record: following Eli's suggestion on emacs-devel, I also tried with this in .dir-locals.el: ((nil . ((warning-suppress-log-types . '((missing-lexbind-cookie)))))) Still, no effect when the file is loaded. Related: bug#78787 "Support for directories and globs in warning-suppress-log-types et al" From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 13 12:14:27 2025 Received: (at submit) by debbugs.gnu.org; 13 Jun 2025 16:14:28 +0000 Received: from localhost ([127.0.0.1]:48646 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1uQ72u-0003sr-Rc for submit@debbugs.gnu.org; Fri, 13 Jun 2025 12:14:26 -0400 Received: from lists.gnu.org ([2001:470:142::17]:59896) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1uQ72k-0003qH-OF for submit@debbugs.gnu.org; Fri, 13 Jun 2025 12:14:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1uQ72d-0002Kv-4p for bug-gnu-emacs@gnu.org; Fri, 13 Jun 2025 12:14:07 -0400 Received: from mail-out.m-online.net ([212.18.0.9]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1uQ72b-00028G-D6 for bug-gnu-emacs@gnu.org; Fri, 13 Jun 2025 12:14:06 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 4bJkwm4dK7z1r5ST; Fri, 13 Jun 2025 18:14:00 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 4bJkwm1zq8z1qqlS; Fri, 13 Jun 2025 18:14:00 +0200 (CEST) X-Virus-Scanned: amavis at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavis, port 10024) with ESMTP id yINOtoHUaQU9; Fri, 13 Jun 2025 18:13:51 +0200 (CEST) X-Auth-Info: 8NXY2KU2FGeEQ3Jr+IZ6Y0z53j9CbJXh+xGlFuQzZKf8lwSW07SHIh9D4qqGNq7M Received: from igel.home (aftr-82-135-83-1.dynamic.mnet-online.de [82.135.83.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Fri, 13 Jun 2025 18:13:51 +0200 (CEST) Received: by igel.home (Postfix, from userid 1000) id CBD5C2C1F63; Fri, 13 Jun 2025 18:13:50 +0200 (CEST) From: Andreas Schwab To: =?utf-8?Q?=C3=93scar?= Fuentes via "Bug reports for GNU Emacs, the Swiss army knife of text editors" Subject: Re: bug#78780: 31.0.50; Directory local variables not effective when loading Elisp file In-Reply-To: <87ecvnmzgr.fsf@telefonica.net> (=?utf-8?Q?=22=C3=93scar?= Fuentes via \"Bug reports for GNU Emacs, the Swiss army knife of text editors\""'s message of "Fri, 13 Jun 2025 17:29:56 +0200") References: <87tt4jn9hd.fsf@telefonica.net> <87ecvnmzgr.fsf@telefonica.net> Date: Fri, 13 Jun 2025 18:13:50 +0200 Message-ID: <87ecvnfwld.fsf@igel.home> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=212.18.0.9; envelope-from=whitebox@nefkom.net; helo=mail-out.m-online.net X-Spam_score_int: -24 X-Spam_score: -2.5 X-Spam_bar: -- X-Spam_report: (-2.5 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.097, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.1 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: On Jun 13 2025, Óscar Fuentes via "Bug reports for GNU Emacs, the Swiss army knife of text editors" wrote: > For the record: following Eli's suggestion on emacs-devel, I also tried > with this in .dir-locals.el: > > ((nil > . ((warning-suppress-log-types > . '((missing-lexbind-cookie)))))) Content analysis details: (1.1 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2001:470:142:0:0:0:0:17 listed in] [list.dnswl.org] 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 0.1 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different -0.0 SPF_HELO_PASS SPF: HELO matches SPF record X-Debbugs-Envelope-To: submit Cc: =?utf-8?Q?=C3=93scar?= Fuentes , 78780@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.1 (/) On Jun 13 2025, Óscar Fuentes via "Bug reports for GNU Emacs, the Swiss army knife of text editors" wrote: > For the record: following Eli's suggestion on emacs-devel, I also tried > with this in .dir-locals.el: > > ((nil > . ((warning-suppress-log-types > . '((missing-lexbind-cookie)))))) You need to remove the quote character. This form is not evaluated. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1 "And now for something completely different." From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 13 13:05:23 2025 Received: (at 78780) by debbugs.gnu.org; 13 Jun 2025 17:05:24 +0000 Received: from localhost ([127.0.0.1]:48752 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1uQ7qE-0004rN-0n for submit@debbugs.gnu.org; Fri, 13 Jun 2025 13:05:23 -0400 Received: from mail.eclipso.de ([217.69.254.104]:37036) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1uQ7qA-0004ma-76 for 78780@debbugs.gnu.org; Fri, 13 Jun 2025 13:05:19 -0400 X-ESMTP-Authenticated-User: 000D6BEA From: =?utf-8?Q?=C3=93scar_Fuentes?= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eclipso.de; s=mail; t=1749834311; bh=Mb2SoO07f4cqk4do0mbOgSvUf/HBmMD5Clyi/hv1JPI=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=NXb9mJaZ7UZXOdldWphiKwfbR5iWIMSa+tLxVU/Te1qJqo7c2G2Pb37xjDs5VL3oN f0U7r99ibJd0PtJ0PjDA5i9h9N+ivUFC+gAscnu2oVyYKvCB/kIm+veWs0xlisnts6 zIBoFjbX3q6lFoTWF3pfWhVcGQHoAVGOr9SL4hG+zoYh/Sj7ZuVaByO7xpd2qL3mK/ kgb9SSgjFk7S4fDKrh+R4z0u0oQeAk9/7v8z9yUQoH0bwGOhU5YLpPzHYjWpiStqvm nxFBhQM9ynkYHP/AqTrIps2IA7hmrry0qZYYVyZ2iHCV5tC8cDujYMxLxgvo1wWTfU vdKlj+fPL06/A== To: Andreas Schwab Subject: Re: bug#78780: 31.0.50; Directory local variables not effective when loading Elisp file In-Reply-To: <87ecvnfwld.fsf@igel.home> References: <87tt4jn9hd.fsf@telefonica.net> <87ecvnmzgr.fsf@telefonica.net> <87ecvnfwld.fsf@igel.home> Date: Fri, 13 Jun 2025 19:05:10 +0200 Message-ID: <875xgzmv21.fsf@telefonica.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 78780 Cc: 78780@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Andreas Schwab writes: >> ((nil >> . ((warning-suppress-log-types >> . '((missing-lexbind-cookie)))))) > > You need to remove the quote character. This form is not evaluated. Thanks for the suggestion, although my understanding is that if the form is not evaluated the quote should not make a difference. With this in .dir-locals.el: ((nil . ((warning-suppress-log-types . ((missing-lexbind-cookie)))))) or this ((nil . ((warning-suppress-log-types . (missing-lexbind-cookie))))) emacs -Q M-x load-library path/to/file.el the *Warnings* buffer stills pops up with the lexical-binding cookie warning. There is no indication that .dir-locals.el is taken into account when the file is loaded. I put some junk on .dir-locals.el and make no effect while loading the file, but visiting it showed this message: Invalid data in /home/oscar/elisp/singles/.dir-locals.el: oarnst From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 13 13:17:38 2025 Received: (at 78780) by debbugs.gnu.org; 13 Jun 2025 17:17:39 +0000 Received: from localhost ([127.0.0.1]:48807 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1uQ824-0006dH-Oe for submit@debbugs.gnu.org; Fri, 13 Jun 2025 13:17:38 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:40744) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1uQ820-0006by-3s for 78780@debbugs.gnu.org; Fri, 13 Jun 2025 13:17:33 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 4bJmL20FLLz1r5SV; Fri, 13 Jun 2025 19:17:29 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 4bJmL14gwyz1qqlW; Fri, 13 Jun 2025 19:17:29 +0200 (CEST) X-Virus-Scanned: amavis at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavis, port 10024) with ESMTP id p9tDnYW7Nrq4; Fri, 13 Jun 2025 19:17:18 +0200 (CEST) X-Auth-Info: 3wbrYcl7RU4dlZdd2oK3zMacBlZLIGdEIN8J4fbc3nIA7/eXObncMyepdYGeq0Xl Received: from igel.home (aftr-82-135-83-12.dynamic.mnet-online.de [82.135.83.12]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Fri, 13 Jun 2025 19:17:18 +0200 (CEST) Received: by igel.home (Postfix, from userid 1000) id BD6F22C1F63; Fri, 13 Jun 2025 19:17:17 +0200 (CEST) From: Andreas Schwab To: =?utf-8?Q?=C3=93scar?= Fuentes Subject: Re: bug#78780: 31.0.50; Directory local variables not effective when loading Elisp file In-Reply-To: <875xgzmv21.fsf@telefonica.net> (=?utf-8?Q?=22=C3=93scar?= Fuentes"'s message of "Fri, 13 Jun 2025 19:05:10 +0200") References: <87tt4jn9hd.fsf@telefonica.net> <87ecvnmzgr.fsf@telefonica.net> <87ecvnfwld.fsf@igel.home> <875xgzmv21.fsf@telefonica.net> Date: Fri, 13 Jun 2025 19:17:17 +0200 Message-ID: <87a56bftnm.fsf@igel.home> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.6 (/) X-Debbugs-Envelope-To: 78780 Cc: 78780@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.6 (-) On Jun 13 2025, Óscar Fuentes wrote: > Andreas Schwab writes: > >>> ((nil >>> . ((warning-suppress-log-types >>> . '((missing-lexbind-cookie)))))) >> >> You need to remove the quote character. This form is not evaluated. > > Thanks for the suggestion, although my understanding is that if the form > is not evaluated the quote should not make a difference. There is a big difference between (quote ((missing-lexbind-coo))) and ((missing-lexbind-coo)). -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1 "And now for something completely different."