metaeducation / rebol-issues

6 stars 1 forks source link

MOLD/FLAT on image values does not remove line breaks #2389

Open Oldes opened 5 years ago

Oldes commented 5 years ago

Current behaviour:

>> mold/flat make image! 8x1
== {make image! [8x1 #{
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
}]}

Expected result (like in Red):

>> mold/flat make image! 8x1
== {make image! [8x1 #{FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF}]}