summaryrefslogtreecommitdiff
path: root/next-lib/src/common/TextX.gf
diff options
context:
space:
mode:
Diffstat (limited to 'next-lib/src/common/TextX.gf')
-rw-r--r--next-lib/src/common/TextX.gf11
1 files changed, 0 insertions, 11 deletions
diff --git a/next-lib/src/common/TextX.gf b/next-lib/src/common/TextX.gf
deleted file mode 100644
index a5ddebc54..000000000
--- a/next-lib/src/common/TextX.gf
+++ /dev/null
@@ -1,11 +0,0 @@
-concrete TextX of Text = CommonX ** {
-
--- This will work for almost all languages except Spanish.
-
- lin
- TEmpty = {s = []} ;
- TFullStop x xs = {s = x.s ++ "." ++ xs.s} ;
- TQuestMark x xs = {s = x.s ++ "?" ++ xs.s} ;
- TExclMark x xs = {s = x.s ++ "!" ++ xs.s} ;
-
-}