diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2017-04-02 15:52:33 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-04-15 12:33:56 +0200 |
commit | a41134b44219a0aadbad4445586c571b0fbffbbd (patch) | |
tree | ca5ec90964f702173ab834b53d14fa97ff5d1a1a | |
parent | 53201c0def3c226a2d46c2a9e2f2d82d1d5d7c53 (diff) | |
download | guix-a41134b44219a0aadbad4445586c571b0fbffbbd.tar guix-a41134b44219a0aadbad4445586c571b0fbffbbd.tar.gz |
scripts: system: Move save-load-path-excursion and save-environment-excursion macros to the top.
* guix/scripts/system.scm (save-load-path-excursion,
save-environment-excursion): Move definitions to the top of the file.
It allows to use them in the whole file.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | guix/scripts/system.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index b0a794bf8e..57580c8d5d 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2016 Alex Kost <alezost@gmail.com> ;;; Copyright © 2016, 2017 Chris Marusich <cmmarusich@gmail.com> +;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; |