Skip to content

Commit

Permalink
%src/mezz/mezz-help.r fix unintended application forms in source
Browse files Browse the repository at this point in the history
  • Loading branch information
jjsullivan5196 authored and hostilefork committed May 20, 2024
1 parent 70d0668 commit e455862
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/mezz/mezz-help.r
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,10 @@ source: func [
]

case [
match [text! url!] f [
match [text! url!] :f [
print f
]
not frame? f [
not frame? (unrun :f) [
print [
name "is" an any [mold kind of :f, "VOID"]
"and not a FRAME!"
Expand All @@ -467,15 +467,15 @@ source: func [
; from combining the the ADJUNCT-OF information.

write-stdout unspaced [
mold name ":" _ "make action! [" _ mold spec-of f
mold name ":" _ "make action! [" _ mold spec-of :f
]

; While all interfaces as far as invocation is concerned has been unified
; under the single ACTION! interface, the issue of getting things like
; some kind of displayable "source" would have to depend on the dispatcher
; used. For the moment, BODY OF hands back limited information. Review.
;
let body: body of f
let body: body of :f
switch/type body [
block! [ ; FUNC, FUNCTION, PROC, PROCEDURE or (DOES of a BLOCK!)
print [mold body "]"]
Expand Down

0 comments on commit e455862

Please sign in to comment.