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:
parent
24f45332b0
commit
176bfd0bce
1 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue