From 176bfd0bce4220b0565d192a93bd9e2f81a1f1fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 23 Sep 2018 16:28:29 +0200 Subject: [PATCH] time: Use #: for 'define-module' clauses. * module/ice-9/time.scm: Use #: instead of : in 'define-module' form. --- module/ice-9/time.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/ice-9/time.scm b/module/ice-9/time.scm index 7e3da849f..231fb8329 100644 --- a/module/ice-9/time.scm +++ b/module/ice-9/time.scm @@ -29,8 +29,8 @@ ;;; Code: (define-module (ice-9 time) - :use-module (ice-9 format) - :export (time)) + #:use-module (ice-9 format) + #:export (time)) (define (time-proc proc) (let* ((gc-start (gc-run-time))