1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-03 10:40:21 +02:00

* format.scm (format): Reintroduce (define format format:format)

so that the binding in the public interface of the module will be OK.
This commit is contained in:
Mikael Djurfeldt 2000-02-11 04:48:07 +00:00
parent 11a5232f86
commit 1af9072d73

View file

@ -1670,9 +1670,9 @@
(define format:abort (lambda () (error "error in format")))
;;(define format format:format)
(define format format:format)
;; Thanks to Shuji Narazaki
(variable-set! (builtin-variable 'format) format:format)
(variable-set! (builtin-variable 'format) format)
;; If this is not possible then a continuation is used to recover
;; properly from a format error. In this case format returns #f.