Skip to content

Commit b4b1651

Browse files
committed
FIX: do not use construction syntax when displaying typeset value in help output
related to: Oldes/Rebol-issues#2159
1 parent 1a431d6 commit b4b1651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mezz/mezz-help.reb

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ import (module [
106106
]
107107
any-function? :val [ any [title-of :val spec-of :val] ]
108108
datatype? :val [ get in spec-of val 'title ]
109-
typeset? :val [ to block! val]
109+
typeset? :val [ ajoin [#"[" val #"]"] ]
110110
port? :val [ reduce [val/spec/title val/spec/ref] ]
111111
image? :val [ mold/part/all/flat val max-desc-width]
112112
gob? :val [ return reform ["offset:" val/offset "size:" val/size] ]

0 commit comments

Comments
 (0)