diff --git a/Encode.cabal b/Encode.cabal
--- a/Encode.cabal
+++ b/Encode.cabal
@@ -1,5 +1,5 @@
 name:               Encode
-version:            1.3.3
+version:            1.3.4
 license:            GPL
 license-file:       LICENSE
 extra-source-files: INSTALL, LicenseBSD, LicenseGPL, Setup.PL
diff --git a/Encode.hs b/Encode.hs
--- a/Encode.hs
+++ b/Encode.hs
@@ -1,5 +1,5 @@
 -- --------------------------------------------------------------------------
---  $Revision: 972 $ $Date: 2010-06-20 01:49:29 +0200 (Sun, 20 Jun 2010) $
+--  $Revision: 974 $ $Date: 2010-06-20 12:44:41 +0200 (Sun, 20 Jun 2010) $
 -- --------------------------------------------------------------------------
 
 -- |
@@ -43,9 +43,9 @@
 
 import Version
 
-version = Version [1, 3, min build 3] []
+version = Version [1, 3, min build 4] []
 
-    where Version [build] [] = revised "$Revision: 972 $"
+    where Version [build] [] = revised "$Revision: 974 $"
 
 
 -- | The datatype introduced for the internal representation of Unicode code
diff --git a/Encode/Arabic/ArabTeX.hs b/Encode/Arabic/ArabTeX.hs
--- a/Encode/Arabic/ArabTeX.hs
+++ b/Encode/Arabic/ArabTeX.hs
@@ -1,5 +1,5 @@
 -- --------------------------------------------------------------------------
---  $Revision: 937 $ $Date: 2010-02-14 13:54:54 +0100 (Sun, 14 Feb 2010) $
+--  $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $
 -- --------------------------------------------------------------------------
 
 -- |
@@ -41,7 +41,7 @@
 
 import Version
 
-version = revised "$Revision: 937 $"
+version = revised "$Revision: 967 $"
 
 
 data ArabTeX = ArabTeX | Lagally | TeX
@@ -673,19 +673,19 @@
         <+>
                 do  syms "\NUL"
 
-                    ">"     |.|     [">"]       |+|     "<"     |.|     ["<"]
+                    ">"     |.|     [">"]           |+|     "<"     |.|     ["<"]
 
                         `others` (\ s -> (Just . return) ("\NUL", [[s]]))
         <+>
                 do  syms "<"
 
-                    ">"     |.|     ["<", ">"]
+                    ">"     |.|     ["<", ">"]      |+|     "<"     |.|     ["<", "<"]
 
                         `others` (\ s -> (Just . return) ("\NUL", ["<", [s]]))
         <+>
                 do  syms ">"
 
-                    "<"     |.|     [">", "<"]
+                    "<"     |.|     [">", "<"]      |+|     ">"     |.|     [">", ">"]
 
                         `others` (\ s -> (Just . return) ("\NUL", [">", [s]]))
 
diff --git a/Encode/Arabic/ArabTeX/ZDMG.hs b/Encode/Arabic/ArabTeX/ZDMG.hs
--- a/Encode/Arabic/ArabTeX/ZDMG.hs
+++ b/Encode/Arabic/ArabTeX/ZDMG.hs
@@ -1,5 +1,5 @@
 -- --------------------------------------------------------------------------
---  $Revision: 934 $ $Date: 2010-02-13 17:26:58 +0100 (Sat, 13 Feb 2010) $
+--  $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $
 -- --------------------------------------------------------------------------
 
 -- |
@@ -39,7 +39,7 @@
 
 import Version
 
-version = revised "$Revision: 934 $"
+version = revised "$Revision: 967 $"
 
 
 data ZDMG = ZDMG | ArabTeX_ZDMG
@@ -450,19 +450,19 @@
         <+>
                 do  syms "\NUL"
 
-                    ">"     |.|     [">"]       |+|     "<"     |.|     ["<"]
+                    ">"     |.|     [">"]           |+|     "<"     |.|     ["<"]
 
                         `others` (\ s -> (Just . return) ("\NUL", [[s]]))
         <+>
                 do  syms "<"
 
-                    ">"     |.|     ["<", ">"]
+                    ">"     |.|     ["<", ">"]      |+|     "<"     |.|     ["<", "<"]
 
                         `others` (\ s -> (Just . return) ("\NUL", ["<", [s]]))
         <+>
                 do  syms ">"
 
-                    "<"     |.|     [">", "<"]
+                    "<"     |.|     [">", "<"]      |+|     ">"     |.|     [">", ">"]
 
                         `others` (\ s -> (Just . return) ("\NUL", [">", [s]]))
 
diff --git a/Exec/Decode/Main.hs b/Exec/Decode/Main.hs
--- a/Exec/Decode/Main.hs
+++ b/Exec/Decode/Main.hs
@@ -1,5 +1,5 @@
 -- --------------------------------------------------------------------------
---  $Revision: 947 $ $Date: 2010-04-29 23:53:39 +0200 (Thu, 29 Apr 2010) $
+--  $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $
 -- --------------------------------------------------------------------------
 
 -- |
@@ -80,7 +80,7 @@
                 PrintVersion : _    ->  tell (unlines [copyleft,
                                               unwords ["Encode Arabic",
                                                        showVersion Main.version,
-                                                       "April 2010"]])
+                                                       "June 2010"]])
                 LineOriented : _    ->  execute True (tail opts) nons
                 _                   ->  execute False      opts  nons
 
diff --git a/Exec/Encode/Main.hs b/Exec/Encode/Main.hs
--- a/Exec/Encode/Main.hs
+++ b/Exec/Encode/Main.hs
@@ -1,5 +1,5 @@
 -- --------------------------------------------------------------------------
---  $Revision: 947 $ $Date: 2010-04-29 23:53:39 +0200 (Thu, 29 Apr 2010) $
+--  $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $
 -- --------------------------------------------------------------------------
 
 -- |
@@ -80,7 +80,7 @@
                 PrintVersion : _    ->  tell (unlines [copyleft,
                                               unwords ["Encode Arabic",
                                                        showVersion Main.version,
-                                                       "April 2010"]])
+                                                       "June 2010"]])
                 LineOriented : _    ->  execute True (tail opts) nons
                 _                   ->  execute False      opts  nons
 
