File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 49
49
* Runtime: fix caml_string_concat when not using JS strings (#1874 )
50
50
* Runtime: consistent bigarray hashing across all architectures (#1977 )
51
51
* Tools: fix jsoo_mktop and jsoo_mkcmis (#1877 )
52
+ * Toplevel: fix for when use-js-strings is disabled (#1997 )
52
53
53
54
# 6.0.1 (2025-02-07) - Lille
54
55
Original file line number Diff line number Diff line change @@ -134,8 +134,9 @@ function caml_jsoo_flags_use_js_string(unit) {
134
134
}
135
135
136
136
//Provides: caml_jsoo_flags_effects
137
+ //Requires: caml_string_of_jsstring
137
138
function caml_jsoo_flags_effects ( unit ) {
138
- return CONFIG ( "effects" ) ;
139
+ return caml_string_of_jsstring ( CONFIG ( "effects" ) ) ;
139
140
}
140
141
141
142
//Provides: caml_wrap_exception const (mutable)
You can’t perform that action at this time.
0 commit comments