]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/macho/macho.factor
classes.struct: moving to new/boa instead of <struct>/<struct-boa>
[factor.git] / extra / macho / macho.factor
index 557571962fe390f4583541730f221583b99394dc..472ceb76b79daee193960b8b0542c4a16420d74d 100644 (file)
@@ -959,7 +959,7 @@ TYPED: load-commands ( macho: mach_header_32/64 -- load-commands )
 : sections-array ( segment-commands -- sections-array )
     [
         dup first segment_command_64?
-        [ section_64 ] [ section ] if <struct> ,
+        [ section_64 ] [ section ] if new ,
         segment-commands [ segment-sections [ , ] each ] each
     ] { } make ;