# HG changeset patch # User Kenichi Handa # Date 1281352103 -32400 # Node ID e198ded50074a1865b67dc16bbc3e7c7866bdbc7 # Parent 64732fa6188aa838214c33201bc2dd1f8d19703d# Parent 614e229f245a66e8590abb4057fca06bdc4cf2c8 language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the composable pattern. diff -r 64732fa6188a -r e198ded50074 lisp/ChangeLog --- a/lisp/ChangeLog Mon Aug 09 02:35:21 2010 -0700 +++ b/lisp/ChangeLog Mon Aug 09 20:08:23 2010 +0900 @@ -1,3 +1,8 @@ +2010-08-09 Kenichi Handa + + * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the + composable pattern. + 2010-08-08 Chong Yidong * tutorial.el (tutorial--default-keys): C-d is now bound to diff -r 64732fa6188a -r e198ded50074 lisp/language/hebrew.el --- a/lisp/language/hebrew.el Mon Aug 09 02:35:21 2010 -0700 +++ b/lisp/language/hebrew.el Mon Aug 09 20:08:23 2010 +0900 @@ -237,8 +237,8 @@ (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)