diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2018-01-24 12:29:17 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-01-28 23:14:55 +0100 |
commit | 63666a348af5ef5190cbe9611c40f2b9188b7967 (patch) | |
tree | 0858f96e76da641e3030d2506a2803efd305c37a /scripts | |
parent | a1f531273c1887eb9a5628e34294538a31cc1243 (diff) | |
download | patches-63666a348af5ef5190cbe9611c40f2b9188b7967.tar patches-63666a348af5ef5190cbe9611c40f2b9188b7967.tar.gz |
guix: Let Emacs detect “scripts/guix.in” appropriate mode.
Since commit 6f774d481839f87178c5895ac2d661e141f879b8 which introduces the use
of Guile's meta switch in “scripts/guix.in”, Emacs was not using ‘scheme-mode’
for this file.
* scripts/guix.in: Replace "-*- scheme -*-" with a local variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/guix.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/guix.in b/scripts/guix.in index e0f0ae7e06..d1c12eae5c 100644 --- a/scripts/guix.in +++ b/scripts/guix.in @@ -1,6 +1,5 @@ #!@GUILE@ \ --no-auto-compile -e main -s --*- scheme -*- !# ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Mark H Weaver <mhw@netris.org> @@ -57,3 +56,7 @@ ;; but since the 'guix' command is not updated by 'guix pull', we cannot ;; really do it now. (apply guix-main args))) + +;;; Local Variables: +;;; mode: scheme +;;; End: |