summaryrefslogtreecommitdiff
path: root/srfi/srfi-19.scm
diff options
context:
space:
mode:
Diffstat (limited to 'srfi/srfi-19.scm')
-rw-r--r--srfi/srfi-19.scm13
1 files changed, 10 insertions, 3 deletions
diff --git a/srfi/srfi-19.scm b/srfi/srfi-19.scm
index d95ba9a5c..6a1a5a268 100644
--- a/srfi/srfi-19.scm
+++ b/srfi/srfi-19.scm
@@ -60,8 +60,15 @@
(define-module (srfi srfi-19)
:use-module (srfi srfi-6)
:use-module (srfi srfi-8)
- :use-module (srfi srfi-9)
- :export (;; Constants
+ :use-module (srfi srfi-9))
+
+(begin-deprecated
+ ;; Prevent `export' from re-exporting core bindings. This behaviour
+ ;; of `export' is deprecated and will disappear in one of the next
+ ;; releases.
+ (define current-time #f))
+
+(export ;; Constants
time-duration
time-monotonic
time-process
@@ -147,7 +154,7 @@
time-utc->time-tai!
;; Date to string/string to date converters.
date->string
- string->date))
+ string->date)
(cond-expand-provide (current-module) '(srfi-19))