mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 19:50:24 +02:00
fix boostrapping error with srfi-1 (for the third time!)
* module/ice-9/deprecated.scm (set-repl-prompt!): Avoid @, so as to avoid a bootstrapping error. Horrible.
This commit is contained in:
parent
3fdc1d05ae
commit
f4b879e03b
1 changed files with 6 additions and 1 deletions
|
@ -605,7 +605,12 @@ better yet, use the repl from `(system repl repl)'.")
|
||||||
(issue-deprecation-warning
|
(issue-deprecation-warning
|
||||||
"`set-repl-prompt!' is deprecated. Use `repl-default-prompt-set!' from
|
"`set-repl-prompt!' is deprecated. Use `repl-default-prompt-set!' from
|
||||||
the `(system repl common)' module.")
|
the `(system repl common)' module.")
|
||||||
((@ (system repl common) repl-default-prompt-set!) v))
|
;; Avoid @, as when bootstrapping it will cause the (system repl common)
|
||||||
|
;; module to be loaded at expansion time, which eventually loads srfi-1, but
|
||||||
|
;; that fails due to an unbuilt supporting lib... grrrrrrrrr.
|
||||||
|
((module-ref (resolve-interface '(system repl common))
|
||||||
|
'repl-default-prompt-set!)
|
||||||
|
v))
|
||||||
|
|
||||||
(define (set-batch-mode?! arg)
|
(define (set-batch-mode?! arg)
|
||||||
(cond
|
(cond
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue