]> gitweb.factorcode.org Git - factor.git/commitdiff
use ?at instead of at*
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 23 Feb 2009 01:20:28 +0000 (19:20 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 23 Feb 2009 01:20:28 +0000 (19:20 -0600)
basis/alien/fortran/fortran.factor

index 915b7d3d4f784ed8989cb8ba845076e294f67b62..5e3dc24476520496b59b36c59987d9ccfda93562 100644 (file)
@@ -170,8 +170,8 @@ M: character-type (fortran-type>c-type)
 
 : (parse-fortran-type) ( fortran-type-string -- type )
     parse-out swap parse-dims swap parse-size swap
-    dup >lower fortran>c-types at*
-    [ nip new-fortran-type ] [ drop misc-type boa ] if ;
+    >lower fortran>c-types ?at
+    [ new-fortran-type ] [ misc-type boa ] if ;
 
 : parse-fortran-type ( fortran-type-string/f -- type/f )
     dup [ (parse-fortran-type) ] when ;