compat: Fix parameter setting.

* gash/compat.scm [mes] (make-parameter): Add missing argument to
'fluid-set!' invocation.
This commit is contained in:
Timothy Sample 2022-12-22 14:33:04 -06:00
parent 00c794c9a6
commit ddb5c7ef36
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@
(if (eq? new-value *fluid-accessor*)
fluid
(let ((old-value (fluid-ref fluid)))
(fluid-set! new-value)
(fluid-set! fluid new-value)
old-value))))))
(define-syntax-rule (parameterize ((param value) ...) body ...)