1
0
forked from GitHub/gf-core

Fixed some missing lincats and a syntax error introduced when adding lincats.

This commit is contained in:
bringert
2005-05-11 08:34:17 +00:00
parent 9699fe1651
commit bdbb6e8ab6
2 changed files with 3 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ lincat Numeral = { s : Str } ;
lincat Digit = {s : DForm => Str} ;
lincat Sub10 = {s : DForm => Str ; size : Size} ;
lincat Sub100 = {s : Str ; size : Size} ;
lincat Sub1000 = {s : Scale => Str ; size : Size}
lincat Sub1000 = {s : Scale => Str ; size : Size} ;
lincat Sub1000000 = { s : Str } ;
oper mkNum : Str -> Str -> Str -> Str -> Lin Digit =

View File

@@ -7,6 +7,8 @@ flags coding=latinasupplement ;
param Size = sg | two | three | other ;
oper LinDigit = {s : Str ; size : Size} ;
lincat Numeral = {s : Str} ;
lincat Digit = LinDigit ;
lincat Sub10 = LinDigit ;
lincat Sub100 = LinDigit ;