From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32863) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d46Cp-0004cO-4S for guix-patches@gnu.org; Fri, 28 Apr 2017 09:45:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d46Ck-0005Y2-74 for guix-patches@gnu.org; Fri, 28 Apr 2017 09:45:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45591) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d46Ck-0005Xo-3C for guix-patches@gnu.org; Fri, 28 Apr 2017 09:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d46Cj-0005tn-Ql for guix-patches@gnu.org; Fri, 28 Apr 2017 09:45:01 -0400 Subject: bug#26693: [PATCH 1/2] dir-locals.el: Add 'modify-phases' keywords. References: <878tmkacfe.fsf@gmail.com> In-Reply-To: <878tmkacfe.fsf@gmail.com> Resent-Message-ID: From: Alex Kost Date: Fri, 28 Apr 2017 16:44:30 +0300 Message-Id: <20170428134431.3381-1-alezost@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26693@debbugs.gnu.org * .dir-locals.el: Add indentation rules for 'replace', 'add-before' and 'add-after'. --- .dir-locals.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.dir-locals.el b/.dir-locals.el index a2d1eb8..4aaeae9 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -23,7 +23,13 @@ (eval . (put 'guard 'scheme-indent-function 1)) (eval . (put 'lambda* 'scheme-indent-function 1)) (eval . (put 'substitute* 'scheme-indent-function 1)) + + ;; 'modify-phases' and its keywords. (eval . (put 'modify-phases 'scheme-indent-function 1)) + (eval . (put 'replace 'scheme-indent-function 1)) + (eval . (put 'add-before 'scheme-indent-function 2)) + (eval . (put 'add-after 'scheme-indent-function 2)) + (eval . (put 'modify-services 'scheme-indent-function 1)) (eval . (put 'with-directory-excursion 'scheme-indent-function 1)) (eval . (put 'package 'scheme-indent-function 0)) -- 2.10.2