From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35319) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d46KZ-0007eB-JE for guix-patches@gnu.org; Fri, 28 Apr 2017 09:53:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d46KU-0000rn-L6 for guix-patches@gnu.org; Fri, 28 Apr 2017 09:53:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45596) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d46KU-0000rQ-Fu for guix-patches@gnu.org; Fri, 28 Apr 2017 09:53:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d46KU-00066A-6r for guix-patches@gnu.org; Fri, 28 Apr 2017 09:53:02 -0400 Subject: bug#26693: [PATCH 2/2] doc: Add references to Emacs-Guix manual. Resent-Message-ID: From: Alex Kost References: <20170428134431.3381-1-alezost@gmail.com> <20170428134431.3381-2-alezost@gmail.com> Date: Fri, 28 Apr 2017 16:52:32 +0300 In-Reply-To: <20170428134431.3381-2-alezost@gmail.com> (Alex Kost's message of "Fri, 28 Apr 2017 16:44:31 +0300") Message-ID: <8737csabbz.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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 --=-=-= Content-Type: text/plain Alex Kost (2017-04-28 16:44 +0300) wrote: > * doc/htmlxref.cnf: Add links to the real manual. > * doc/contributing.texi (Formatting Code): Add reference to it. > * doc/guix.texi (Package Management): Likewise. > --- > doc/contributing.texi | 5 ++++- > doc/guix.texi | 12 +++++++----- > doc/htmlxref.cnf | 4 +++- > 3 files changed, 14 insertions(+), 7 deletions(-) I'm very sorry, this is the wrong patch :-) The attached one is the right one. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-etc-indent-code.el-Define-source-tree-by-indent-code.patch >From d4abac119e2c62cc42a8786034c905196d7262e6 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Fri, 28 Apr 2017 16:07:33 +0300 Subject: [PATCH] etc: indent-code.el: Define source tree by "indent-code.el". * etc/indent-code.el.in: Set default directory by "indent-code.el" itself, otherwise it works only when called from the top directory of the guix source tree. --- etc/indent-code.el.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/indent-code.el.in b/etc/indent-code.el.in index 68ad72c..6102b5d 100755 --- a/etc/indent-code.el.in +++ b/etc/indent-code.el.in @@ -26,10 +26,10 @@ ;;; Code: -;; Load Scheme indentation rules from the current directory. +;; Load Scheme indentation rules from ".dir-locals.el". (with-temp-buffer (scheme-mode) - (let ((default-directory (file-name-as-directory ".")) + (let ((default-directory (file-name-as-directory load-file-name)) (enable-local-variables :all)) (hack-dir-local-variables) (hack-local-variables-apply))) -- 2.10.2 --=-=-=--