guile-commits
[Top][All Lists]
Advanced

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

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


From: Ludovic Courtès
Subject: [Guile-commits] 03/04: time: Use #: for 'define-module' clauses.
Date: Sun, 23 Sep 2018 10:42:03 -0400 (EDT)

civodul pushed a commit to branch stable-2.2
in repository guile.

commit 663b8826d7867578f8df509a5f986c671f857938
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]