From unknown Fri Jun 20 07:11:29 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#9317 <9317@debbugs.gnu.org> To: bug#9317 <9317@debbugs.gnu.org> Subject: Status: [PATCH] Don't install .dir-locals.el Reply-To: bug#9317 <9317@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:11:29 +0000 retitle 9317 [PATCH] Don't install .dir-locals.el reassign 9317 emacs submitter 9317 Leo severity 9317 minor tag 9317 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 17 23:49:54 2011 Received: (at submit) by debbugs.gnu.org; 18 Aug 2011 03:49:54 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QttcA-0003FH-5L for submit@debbugs.gnu.org; Wed, 17 Aug 2011 23:49:54 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Qttc8-0003FA-0Q for submit@debbugs.gnu.org; Wed, 17 Aug 2011 23:49:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QttaE-00034n-7B for submit@debbugs.gnu.org; Wed, 17 Aug 2011 23:47:54 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, T_DKIM_INVALID, T_TO_NO_BRKTS_FREEMAIL autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:40352) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QttaE-00034i-5d for submit@debbugs.gnu.org; Wed, 17 Aug 2011 23:47:54 -0400 Received: from eggs.gnu.org ([140.186.70.92]:47087) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QttaD-0007Us-CW for bug-gnu-emacs@gnu.org; Wed, 17 Aug 2011 23:47:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QttaC-00034W-DE for bug-gnu-emacs@gnu.org; Wed, 17 Aug 2011 23:47:53 -0400 Received: from mail-gy0-f169.google.com ([209.85.160.169]:37282) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QttaC-00034S-9c for bug-gnu-emacs@gnu.org; Wed, 17 Aug 2011 23:47:52 -0400 Received: by gyg10 with SMTP id 10so1323483gyg.0 for ; Wed, 17 Aug 2011 20:47:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:x-debbugs-cc:date:message-id:mime-version :content-type; bh=bzg6wpfEeWf7Rq2s/s68IrU7wxA75MO+snXoKXt3R40=; b=a4fc+WTLAL06ENKR6CezzcQRQBoK7ZU0pzgA+ubBj2rCs6O0h8zfzZFVcI001l2qej eoMRzbbMKrNp/TW5o6mje0yy7jakv95ID7niL5bKJl0UqXYKmyYpFmczbVqyVnFBlJH3 h5GFawklyjHS+ZXJOWBBLSYiYvCtVF9fb4vbo= Received: by 10.143.68.9 with SMTP id v9mr132100wfk.297.1313639271423; Wed, 17 Aug 2011 20:47:51 -0700 (PDT) Received: from bogon ([58.22.114.122]) by mx.google.com with ESMTPS id g4sm1128264pbj.73.2011.08.17.20.47.48 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 17 Aug 2011 20:47:50 -0700 (PDT) From: Leo To: bug-gnu-emacs@gnu.org Subject: [PATCH] Don't install .dir-locals.el X-Debbugs-CC: Chong Yidong , Lars Magne Ingebrigtsen Date: Thu, 18 Aug 2011 11:47:40 +0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -5.9 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.9 (-----) This is a minor bug but since the main .dir-locals.el in the toplevel of the repo isn't installed, neither should lisp/gnus/.dir-locals.el and maybe others. === modified file 'Makefile.in' --- Makefile.in 2011-07-09 00:18:49 +0000 +++ Makefile.in 2011-08-18 03:45:26 +0000 @@ -535,6 +535,7 @@ rm -f $${subdir}/.gitignore ; \ rm -f $${subdir}/.arch-inventory ; \ rm -f $${subdir}/.DS_Store ; \ + rm -f $${subdir}/.dir-locals.el ; \ rm -f $${subdir}/\#* ; \ rm -f $${subdir}/.\#* ; \ rm -f $${subdir}/*~ ; \ From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 18 23:06:17 2011 Received: (at 9317) by debbugs.gnu.org; 19 Aug 2011 03:06:17 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QuFPV-0002P8-Nv for submit@debbugs.gnu.org; Thu, 18 Aug 2011 23:06:17 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.183] helo=ironport2-out.pppoe.ca) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QuFPT-0002P0-NH for 9317@debbugs.gnu.org; Thu, 18 Aug 2011 23:06:16 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAO3RTU5Ld+HZ/2dsb2JhbABCp3d4gUABAQQBViMFCws0EhQYDSSIBLd7hkgEn2+ENQ X-IronPort-AV: E=Sophos;i="4.68,249,1312171200"; d="scan'208";a="131873108" Received: from 75-119-225-217.dsl.teksavvy.com (HELO ceviche.home) ([75.119.225.217]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 18 Aug 2011 23:04:11 -0400 Received: by ceviche.home (Postfix, from userid 20848) id 3B56266329; Thu, 18 Aug 2011 23:04:09 -0400 (EDT) From: Stefan Monnier To: Leo Subject: Re: bug#9317: [PATCH] Don't install .dir-locals.el Message-ID: References: Date: Thu, 18 Aug 2011 23:04:09 -0400 In-Reply-To: (Leo's message of "Thu, 18 Aug 2011 11:47:40 +0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.1 (--) X-Debbugs-Envelope-To: 9317 Cc: Lars Magne Ingebrigtsen , 9317@debbugs.gnu.org, Chong Yidong X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.1 (--) > This is a minor bug but since the main .dir-locals.el in the toplevel of > the repo isn't installed, neither should lisp/gnus/.dir-locals.el and > maybe others. I'm not sure it's something that needs fixing: the toplevel .dir-locals has no clear destination (since the various subdirectories get installed into different parts of the file system), where the lisp/gnus/.dir-locals.el has a very clear destination, so I think it's actually good to install it there. Stefan > === modified file 'Makefile.in' > --- Makefile.in 2011-07-09 00:18:49 +0000 > +++ Makefile.in 2011-08-18 03:45:26 +0000 > @@ -535,6 +535,7 @@ > rm -f $${subdir}/.gitignore ; \ > rm -f $${subdir}/.arch-inventory ; \ > rm -f $${subdir}/.DS_Store ; \ > + rm -f $${subdir}/.dir-locals.el ; \ > rm -f $${subdir}/\#* ; \ > rm -f $${subdir}/.\#* ; \ > rm -f $${subdir}/*~ ; \ From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 19 01:45:51 2011 Received: (at 9317) by debbugs.gnu.org; 19 Aug 2011 05:45:51 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QuHtu-00060o-VG for submit@debbugs.gnu.org; Fri, 19 Aug 2011 01:45:51 -0400 Received: from mail-pz0-f47.google.com ([209.85.210.47]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QuHts-00060g-CY for 9317@debbugs.gnu.org; Fri, 19 Aug 2011 01:45:49 -0400 Received: by pzk2 with SMTP id 2so4213179pzk.20 for <9317@debbugs.gnu.org>; Thu, 18 Aug 2011 22:43:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=SQA+Z5xqf6/7EC5xkgLMynADccmoBIgfdHTBX/FConM=; b=BdmOGTn7u3HEKZw0A6SGyMRt0k4AuQWK6IXrPb4x1+8HQxjH4PpN1qC24To0QoL8LF aFzyHHWikLS49GK1Sy+uDL6+LeR86VFjRNKI6fsVbarB+UdburXwBMKuNUGsnMaJt25A 4Qz+fzxUMOpGb1jzXjjnuAQvMd14hyWsCSGqY= Received: by 10.142.214.7 with SMTP id m7mr853618wfg.10.1313732624570; Thu, 18 Aug 2011 22:43:44 -0700 (PDT) Received: from bogon ([58.22.114.148]) by mx.google.com with ESMTPS id l10sm2058301pbl.30.2011.08.18.22.43.39 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 18 Aug 2011 22:43:42 -0700 (PDT) From: Leo To: Stefan Monnier Subject: Re: bug#9317: [PATCH] Don't install .dir-locals.el References: Date: Fri, 19 Aug 2011 13:43:33 +0800 In-Reply-To: (Stefan Monnier's message of "Thu, 18 Aug 2011 23:04:09 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3.50 (Mac OS X 10.6.8) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -4.8 (----) X-Debbugs-Envelope-To: 9317 Cc: Lars Magne Ingebrigtsen , 9317@debbugs.gnu.org, Chong Yidong X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.6 (----) On 2011-08-19 11:04 +0800, Stefan Monnier wrote: > I'm not sure it's something that needs fixing: the toplevel .dir-locals > has no clear destination (since the various subdirectories get installed > into different parts of the file system), where the > lisp/gnus/.dir-locals.el has a very clear destination, so I think it's > actually good to install it there. subdir .dir-locals.el often just complement the toplevel one. So it is not self-contained. Leo From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 11 07:48:33 2012 Received: (at control) by debbugs.gnu.org; 11 Apr 2012 11:48:33 +0000 Received: from localhost ([127.0.0.1]:50487 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHw2K-00069l-9y for submit@debbugs.gnu.org; Wed, 11 Apr 2012 07:48:33 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:51315) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHw2H-00069c-Cx for control@debbugs.gnu.org; Wed, 11 Apr 2012 07:48:30 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SHw12-00015N-Si for control@debbugs.gnu.org; Wed, 11 Apr 2012 13:47:12 +0200 Date: Wed, 11 Apr 2012 13:47:12 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #9317 X-MailScanner-ID: 1SHw12-00015N-Si X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334749634.21054@kvNEJWhlIK8BGBZxWbk/aQ X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) close 9317 From unknown Fri Jun 20 07:11:29 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 10 May 2012 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator