guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 81/99: Argument to make-fluid is optional


From: Christopher Allan Webber
Subject: [Guile-commits] 81/99: Argument to make-fluid is optional
Date: Sun, 10 Oct 2021 21:51:10 -0400 (EDT)

cwebber pushed a commit to branch compile-to-js-merge
in repository guile.

commit 7e5d9d945ec2880df28b287491ac9dfec4d30625
Author: Ian Price <ianprice90@googlemail.com>
AuthorDate: Wed Aug 16 21:44:04 2017 +0100

    Argument to make-fluid is optional
    
    * module/language/js-il/runtime.js(make-fluid): Supply default argument
---
 module/language/js-il/runtime.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/module/language/js-il/runtime.js b/module/language/js-il/runtime.js
index 49271bc..1052479 100644
--- a/module/language/js-il/runtime.js
+++ b/module/language/js-il/runtime.js
@@ -1162,6 +1162,9 @@ def_guile0("string-join", function (self, cont, strings) {
 
 // Fluids
 def_guile0("make-fluid", function (self, cont, val) {
+    if (val === undefined) {
+        val = scheme.FALSE;
+    }
     return cont(new scheme.Fluid(val));
 });
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]