1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

time: Use #: for 'define-module' clauses.

* module/ice-9/time.scm: Use #: instead of : in 'define-module' form.
This commit is contained in:
Ludovic Courtès 2018-09-23 16:28:29 +02:00 committed by Andy Wingo
parent 24f45332b0
commit 176bfd0bce

View file

@ -29,8 +29,8 @@
;;; Code: ;;; Code:
(define-module (ice-9 time) (define-module (ice-9 time)
:use-module (ice-9 format) #:use-module (ice-9 format)
:export (time)) #:export (time))
(define (time-proc proc) (define (time-proc proc)
(let* ((gc-start (gc-run-time)) (let* ((gc-start (gc-run-time))