diff options
| author | Stefan Kangas | 2021-10-22 07:41:55 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2021-10-22 07:51:45 +0200 |
| commit | 885448d1e66ba70faf3559e4028552fbb090aef5 (patch) | |
| tree | 2fb367252f033922771966b9b781d18c17ece7f0 /lisp/language | |
| parent | 357d273d2e312fca7b187dca45585cbdbf4c6469 (diff) | |
| download | emacs-885448d1e66ba70faf3559e4028552fbb090aef5.tar.gz emacs-885448d1e66ba70faf3559e4028552fbb090aef5.zip | |
; Revert parts of previous commit
* admin/unidata/unidata-gen.el (unidata-gen-table)
(unidata-gen-table-symbol, unidata-gen-table-integer)
(unidata-gen-table-numeric, unidata-gen-table-word-list)
(unidata-describe-decomposition):
* lisp/composite.el (unicode-category-table):
* lisp/files.el (recover-file):
* lisp/frame.el (frames-on-display-list, frame-background-mode):
* lisp/language/indian.el (script-regexp-alist): Revert parts of
previous commit; it seemed innocent but caused issues.
Diffstat (limited to 'lisp/language')
| -rw-r--r-- | lisp/language/indian.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/language/indian.el b/lisp/language/indian.el index d373c82feea..6f9d2703849 100644 --- a/lisp/language/indian.el +++ b/lisp/language/indian.el | |||
| @@ -376,12 +376,12 @@ South Indian language Malayalam is supported in this language environment.")) | |||
| 376 | (kannada . ,kannada-composable-pattern) | 376 | (kannada . ,kannada-composable-pattern) |
| 377 | (malayalam . ,malayalam-composable-pattern)))) | 377 | (malayalam . ,malayalam-composable-pattern)))) |
| 378 | (map-char-table | 378 | (map-char-table |
| 379 | (lambda (key val) | 379 | #'(lambda (key val) |
| 380 | (let ((slot (assq val script-regexp-alist))) | 380 | (let ((slot (assq val script-regexp-alist))) |
| 381 | (if slot | 381 | (if slot |
| 382 | (set-char-table-range | 382 | (set-char-table-range |
| 383 | composition-function-table key | 383 | composition-function-table key |
| 384 | (list (vector (cdr slot) 0 #'font-shape-gstring)))))) | 384 | (list (vector (cdr slot) 0 #'font-shape-gstring)))))) |
| 385 | char-script-table)) | 385 | char-script-table)) |
| 386 | 386 | ||
| 387 | (provide 'indian) | 387 | (provide 'indian) |