Skip to content

Commit

Permalink
Fix MAKE-FILE isotopic action handling
Browse files Browse the repository at this point in the history
Predicate was an ACTION! vs. an ACTIVATION!
  • Loading branch information
hostilefork committed Aug 11, 2023
1 parent 55100df commit d6edd22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/make-file.r
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ embedded-file-slash-error: lambda [item] [
make-file-block-parts: func [
return: [block!]
block [block!]
predicate [action!]
predicate [activation!]
<local> last-was-slash item
][
; Current idea is to analyze for "slash coherence"
Expand Down Expand Up @@ -151,7 +151,7 @@ make-file-block-parts: func [
make-file-tuple-parts: func [
return: [block!]
tuple [tuple!]
predicate [action!]
predicate [activation!]
<local> text item
][
tuple: as block! tuple
Expand Down Expand Up @@ -187,7 +187,7 @@ make-file-tuple-parts: func [
make-file-path-parts: func [
return: [block!]
path [path!]
predicate [action!]
predicate [activation!]
<local> item
][
path: as block! path
Expand Down Expand Up @@ -242,7 +242,7 @@ make-file: func [

return: [<opt> file!]
def [<maybe> word! path! tuple! block!]
/predicate [action!]
/predicate [activation!]
<local> result
][
predicate: default [:identity]
Expand Down

0 comments on commit d6edd22

Please sign in to comment.