From c677ed85cc2a81e49bc81474df68920cf1dd93cc Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Thu, 16 May 2019 23:42:45 -0400 Subject: [PATCH] Clean up module imports in 'gash.scm'. * gash/gash.scm: Sort the '#:use-module' lines and remove a duplicate '(gash environment)'. --- gash/gash.scm | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/gash/gash.scm b/gash/gash.scm index 9f2567f..a3ab69c 100644 --- a/gash/gash.scm +++ b/gash/gash.scm @@ -19,10 +19,11 @@ ;;; along with Gash. If not, see . (define-module (gash gash) - - #:use-module (srfi srfi-1) - #:use-module (srfi srfi-26) - + #:use-module (gash config) + #:use-module (gash environment) + #:use-module (gash eval) + #:use-module (gash parser) + #:use-module (gash repl) #:use-module (ice-9 buffered-input) #:use-module (ice-9 ftw) #:use-module (ice-9 getopt-long) @@ -31,15 +32,8 @@ #:use-module (ice-9 pretty-print) #:use-module (ice-9 receive) #:use-module (ice-9 regex) - - #:use-module (gash config) - #:use-module (gash environment) - - #:use-module (gash environment) - #:use-module (gash eval) - #:use-module (gash parser) - #:use-module (gash repl) - + #:use-module (srfi srfi-1) + #:use-module (srfi srfi-26) #:export (main)) (catch #t