language/hebrew.el: Exclude U+05BD (Hebre MAQAF) from the composable pattern.
authorKenichi Handa <handa@etlken>
Mon, 9 Aug 2010 08:12:49 +0000 (17:12 +0900)
committerKenichi Handa <handa@etlken>
Mon, 9 Aug 2010 08:12:49 +0000 (17:12 +0900)
lisp/ChangeLog
lisp/language/hebrew.el

index 32e9636..8fa8902 100644 (file)
@@ -1,3 +1,8 @@
+2010-08-09  Kenichi Handa  <handa@m17n.org>
+
+       * language/hebrew.el: Exclude U+05BD (Hebre MAQAF) from the
+       composable pattern.
+
 2010-08-08  Chong Yidong  <cyd@stupidchicken.com>
 
        * tutorial.el (tutorial--default-keys): C-d is now bound to
index 876f6fa..589412a 100644 (file)
@@ -237,8 +237,8 @@ Bidirectional editing is supported.")))
          (setq idx (1+ idx))))))
     gstring))
 
-(let ((pattern1 "[\u05D0-\u05F2][\u0591-\u05BF\u05C1-\u05C5\u05C7]+")
-      (pattern2 "[\u05D0-\u05F2]\u200D[\u0591-\u05BF\u05C1-\u05C5\u05C7]+"))
+(let ((pattern1 "[\u05D0-\u05F2][\u0591-\u05BD\u05BF\u05C1-\u05C5\u05C7]+")
+      (pattern2 "[\u05D0-\u05F2]\u200D[\u0591-\u05BD\u05BF\u05C1-\u05C5\u05C7]+"))
   (set-char-table-range
    composition-function-table '(#x591 . #x5C7)
    (list (vector pattern2 3 'hebrew-shape-gstring)