guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 03/55: time: Use #: for 'define-module' clauses.


From: Andy Wingo
Subject: [Guile-commits] 03/55: time: Use #: for 'define-module' clauses.
Date: Thu, 23 May 2019 11:52:36 -0400 (EDT)

wingo pushed a commit to branch master
in repository guile.

commit 176bfd0bce4220b0565d192a93bd9e2f81a1f1fe
Author: Ludovic Courtès <address@hidden>
Date:   Sun Sep 23 16:28:29 2018 +0200

    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 7e3da84..231fb83 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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]