Skip to content

Commit a2b61a8

Browse files
committed
FIX: limit search only to refinements!
related to: Oldes/Rebol-issues#1340
1 parent e82b700 commit a2b61a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/mezz/mezz-help.reb

+1-2
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,10 @@ import module [
227227
output [mold :word "is" form-type :word "used in these functions:^/^/"]
228228
str: copy ""
229229
foreach [name val] system/contexts/lib [
230-
;probe word
231230
if all [
232231
any-function? :val
233232
spec: spec-of :val
234-
desc: find/tail spec :word
233+
desc: find/case/tail spec :word
235234
][
236235
str: join "^[[1;32m" form-pad name 15
237236
append str "^[[m "

0 commit comments

Comments
 (0)