mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix display of Hebrew text with precomposed characters
* lisp/language/hebrew.el (base): Include precomposed Hebrew characters from the Alphabetic Presentation Forms in the composition patterns. (Bug#36171)
This commit is contained in:
parent
52305bcb51
commit
2f4b4c8571
1 changed files with 3 additions and 2 deletions
|
|
@ -238,8 +238,9 @@ Bidirectional editing is supported.")))
|
|||
(setq idx (1+ idx)))))))
|
||||
gstring))
|
||||
|
||||
(let* ((base "[\u05D0-\u05F2]")
|
||||
(combining "[\u0591-\u05BD\u05BF\u05C1-\u05C2\u05C4-\u05C5\u05C7]+")
|
||||
(let* ((base "[\u05D0-\u05F2\uFB1D\uFB1F-\uFB28\uFB2A-\uFB4F]")
|
||||
(combining
|
||||
"[\u0591-\u05BD\u05BF\u05C1-\u05C2\u05C4-\u05C5\u05C7\uFB1E]+")
|
||||
(pattern1 (concat base combining))
|
||||
(pattern2 (concat base "\u200D" combining)))
|
||||
(set-char-table-range
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue