diff --git a/cakyrespa.cabal b/cakyrespa.cabal
--- a/cakyrespa.cabal
+++ b/cakyrespa.cabal
@@ -2,7 +2,7 @@
 cabal-version:	>= 1.6
 
 name:		cakyrespa
-version:	0.0.4
+version:	0.0.5
 stability:	Alpha
 license:	BSD3
 license-file:	LICENSE
@@ -22,5 +22,5 @@
     main-is:		cakyrespa.hs
     other-modules:	Language.Lojban.Read
     build-depends:	base >3 && <5, lojbanParser >= 0.1.5,
-        gluturtle >= 0.0.8, GLUT
+        gluturtle >= 0.0.9, GLUT
     ghc-options:	-Wall
diff --git a/src/Language/Lojban/Read.hs b/src/Language/Lojban/Read.hs
--- a/src/Language/Lojban/Read.hs
+++ b/src/Language/Lojban/Read.hs
@@ -83,6 +83,14 @@
 	TenseGI tense
 		(process $ TermsBridiTail ss undefined undefined t)
 		(process $ TermsBridiTail ss undefined undefined u)
+process (GekSentence
+	(STagGik
+		(P.Time _ [((_, tense, _), _, _)] _ _)
+		((_, "gi", _), _, _))
+	t ((_, "gi", _), _, _) u _ _ _) =
+	TenseGI tense
+		(process $ t)
+		(process $ u)
 process (P.Selbri selbri) = Bridi (readSelbri selbri) []
 process t = NotImplemented $ "process: " ++ show t
 
