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

Use `define-module*' in (ice-9 history).

* module/ice-9/history.scm: Use `define-module*' instead of
  `process-define-module'.
This commit is contained in:
Ludovic Courtès 2010-11-20 00:47:12 +01:00
parent 1c20cf1175
commit ec84b0a251

View file

@ -21,7 +21,7 @@
#:export (value-history-enabled? enable-value-history! disable-value-history!
clear-value-history!))
(process-define-module '((value-history)))
(define-module* '(value-history))
(define *value-history-enabled?* #f)
(define (value-history-enabled?)