1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Merge remote-tracking branch 'origin/harfbuzz'

This commit is contained in:
Eli Zaretskii 2019-06-07 17:52:16 +03:00
commit 4ebfec02f0
36 changed files with 1516 additions and 224 deletions

View file

@ -828,6 +828,9 @@ Returns new end position."
(let ((pos from) newpos func (max to))
(narrow-to-region from to)
(while (< pos max)
;; FIXME: The below seems to assume
;; composition-function-table holds functions? That is no
;; longer true, since long ago.
(setq func (aref composition-function-table (char-after pos)))
(if (fboundp func)
(setq newpos (funcall func pos nil)