1
0
forked from GitHub/gf-rgl

remove the utf-8 flags

This commit is contained in:
Krasimir Angelov
2026-03-19 15:27:53 +01:00
parent ce2f785f92
commit 76cbf0b75b
5 changed files with 5 additions and 12 deletions

View File

@@ -1,5 +1,4 @@
concrete AdjectiveMkd of Adjective = CatMkd ** open Prelude,ResMkd in {
flags
coding = "UTF-8" ;
lin PositA a = a ** {isPre = True} ;
}
}

View File

@@ -1,4 +1,2 @@
concrete GrammarMkd of Grammar = VerbMkd,SentenceMkd,NounMkd,AdjectiveMkd,NumeralMkd,PhraseMkd,TextX,StructuralMkd,TenseX ** {
flags
coding = "UTF-8" ;
}
}

View File

@@ -1,6 +1,4 @@
concrete NounMkd of Noun = CatMkd ** open Prelude,ResMkd in {
flags
coding = "UTF-8" ;
lin AdjCN ap cn = {
s = case ap.isPre of {
True => \\s,n => ap.s ! s

View File

@@ -1,6 +1,5 @@
concrete SentenceMkd of Sentence = CatMkd ** open Prelude,ResMkd in {
flags
coding = "UTF-8" ;
lin PredVP np vp = {present = \\a => np.s ++ vp.present ! a ! np.n ! np.p ;
aorist = np.s ++ vp.aorist ! np.n ! np.p ;
participle = {aorist = \\a => np.s ++ vp.participle.aorist ! a !

View File

@@ -1,6 +1,5 @@
concrete VerbMkd of Verb = CatMkd ** open Prelude,ResMkd in {
flags
coding = "UTF-8" ;
lin ComplSlash vps np = {present = \\a,n,p => vps.present ! a ! n
! p
++ np.s;