]> git.eshelyaron.com Git - emacs.git/commitdiff
Use lexical-binding in of all lisp/language
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 27 Jan 2021 02:11:49 +0000 (21:11 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 27 Jan 2021 16:13:39 +0000 (11:13 -0500)
* lisp/international/titdic-cnv.el (pinyin-convert):
Enable lexical-binding in the generated file(s).

* lisp/language/ethio-util.el: Use lexical-binding.
(ethio-tex-to-fidel-buffer): Use `inhibit-read-only`.  Remove unused
vars `p` and `ch`.

* lisp/language/hanja-util.el: Use lexical-binding.

* lisp/language/ind-util.el: Use lexical-binding.
(indian-translate-region): Actually use the `from` and `to` arguments.
(<toplevel>): Use `dlet`.  Remove unused var `current-repertory`.
(indian-2-column-to-ucs-region): Remove unused var `pos`.

* lisp/language/japan-util.el: Use lexical-binding.
(japanese-katakana-region, japanese-hiragana-region)
(japanese-zenkaku-region): Remove unused var `next`.

* lisp/language/korea-util.el: Use lexical-binding.

* lisp/language/lao-util.el: Use lexical-binding.
(lao-composition-function): Remove unused var `glyph`.

* lisp/language/thai-util.el: Use lexical-binding.
(thai-composition-function): Remove unused var `glyph`.

* lisp/language/thai-word.el: Use lexical-binding.
(thai-forward-word): Remove unused var `tail`.

* lisp/language/tibet-util.el: Use lexical-binding.
(tibetan-add-components): Remove unused var `tmp`.
(tibetan-compose-region): Remove unused vars `str`, `result`, `chars`.

* lisp/language/viet-util.el:
* lisp/language/tv-util.el:
* lisp/language/cyril-util.el:
* lisp/language/china-util.el: Use lexical-binding.

26 files changed:
lisp/international/titdic-cnv.el
lisp/language/burmese.el
lisp/language/cham.el
lisp/language/china-util.el
lisp/language/cyril-util.el
lisp/language/ethio-util.el
lisp/language/ethiopic.el
lisp/language/hanja-util.el
lisp/language/hebrew.el
lisp/language/ind-util.el
lisp/language/indian.el
lisp/language/japan-util.el
lisp/language/khmer.el
lisp/language/korea-util.el
lisp/language/korean.el
lisp/language/lao-util.el
lisp/language/lao.el
lisp/language/misc-lang.el
lisp/language/sinhala.el
lisp/language/tai-viet.el
lisp/language/thai-util.el
lisp/language/thai-word.el
lisp/language/tibet-util.el
lisp/language/tibetan.el
lisp/language/tv-util.el
lisp/language/viet-util.el

index 58c81bfd1f373ea6e08b72ff79fba3ecb0d551ae..753139e5dd8104c3d6d79a16537997a7c27175b7 100644 (file)
@@ -1212,8 +1212,10 @@ The library is named pinyin.el, and contains the constant
         (dst-file (cadr command-line-args-left))
         (coding-system-for-write 'utf-8-unix))
     (with-temp-file dst-file
-      (insert ";; This file is automatically generated from pinyin.map,\
- by the\n;; function pinyin-convert.\n\n")
+      (insert ";;; " (file-name-nondirectory dst-file)
+              "   -*- lexical-binding:t -*-
+;; This file is automatically generated from pinyin.map, by the
+;; function pinyin-convert.\n\n")
       (insert "(defconst pinyin-character-map\n'(")
       (let ((pos (point)))
         (insert-file-contents src-file)
index d689e87d7851c6bf31b76780da80545d52f864fd..373f25ac5ca037c7bb598266233b245e145a4000 100644 (file)
@@ -51,7 +51,7 @@
                                               regexp t t))))
     regexp))
 
-(let ((elt (list (vector burmese-composable-pattern 0 'font-shape-gstring)
-                (vector "." 0 'font-shape-gstring))))
+(let ((elt (list (vector burmese-composable-pattern 0 #'font-shape-gstring)
+                (vector "." 0 #'font-shape-gstring))))
   (set-char-table-range composition-function-table '(#x1000 . #x107F) elt)
   (set-char-table-range composition-function-table '(#xAA60 . #xAA7B) elt))
index aa820dc649c00f359df49d3f32b2eed17f753f78..3aac986b437afaa5a59cbb765d19d7f7c63a2ecc 100644 (file)
@@ -29,7 +29,7 @@
 
 (set-char-table-range composition-function-table
                      '(#xAA00 . #xAA5F)
-                     (list (vector "[\xAA00-\xAA5F]+" 0 'font-shape-gstring)))
+                     (list (vector "[\xAA00-\xAA5F]+" 0 #'font-shape-gstring)))
 
 (set-language-info-alist
  "Cham" '((charset unicode)
index 4bc2eaa2cdde773e7eb181db1954b0ad843903f8..105e7a735fd572a1ebb56d32e3053eff7c2f82b4 100644 (file)
@@ -1,4 +1,4 @@
-;;; china-util.el --- utilities for Chinese  -*- coding: utf-8 -*-
+;;; china-util.el --- utilities for Chinese  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 1995, 2001-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
index 72ceffdf0d66a6d46b9efe0e83a89f885acb81a2..04e681d743d5521ef6c22c684657e0204b746b62 100644 (file)
@@ -1,4 +1,4 @@
-;;; cyril-util.el --- utilities for Cyrillic scripts
+;;; cyril-util.el --- utilities for Cyrillic scripts  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 1997-1998, 2001-2021 Free Software Foundation, Inc.
 
index 174b9ecfda2c7d175fd1ad9ad3030668ef80128f..9b5fdf24d2b65200484283568fe4355b7ec560b4 100644 (file)
@@ -1,4 +1,4 @@
-;;; ethio-util.el --- utilities for Ethiopic   -*- coding: utf-8-emacs; -*-
+;;; ethio-util.el --- utilities for Ethiopic   -*- coding: utf-8-emacs; lexical-binding: t; -*-
 
 ;; Copyright (C) 1997-1998, 2002-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -832,11 +832,12 @@ The 2nd and 3rd arguments BEGIN and END specify the region."
     (set-buffer-modified-p nil)))
 
 ;;;###autoload
-(defun ethio-tex-to-fidel-buffer nil
+(defun ethio-tex-to-fidel-buffer ()
   "Convert fidel-tex commands in the current buffer into fidel chars."
   (interactive)
-  (let ((buffer-read-only nil)
-       (p) (ch))
+  (let ((inhibit-read-only t)
+       ;; (p) (ch)
+       )
 
     ;; TeX macros to Ethiopic characters
     (robin-convert-region (point-min) (point-max) "ethiopic-tex")
@@ -1018,7 +1019,7 @@ With ARG, insert that many delimiters."
 ;;
 
 ;;;###autoload
-(defun ethio-composition-function (pos to font-object string _direction)
+(defun ethio-composition-function (pos _to _font-object string _direction)
   (setq pos (1- pos))
   (let ((pattern "\\ce\\(፟\\|\\)"))
     (if string
index 8573f6177dfda0e42aa76e8bf5b66426231ea22f..209dcd51c90f38c013f9708b7c99388578dbee5b 100644 (file)
@@ -79,8 +79,8 @@
 )))
 
 ;; For automatic composition
-(aset composition-function-table ? 'ethio-composition-function)
-(aset composition-function-table ?፟ 'ethio-composition-function)
+(aset composition-function-table ? #'ethio-composition-function)
+(aset composition-function-table ?፟ #'ethio-composition-function)
 
 (provide 'ethiopic)
 
index 313fc63bebde0d148ceae81cfbf1fc36abc00d29..9e9213536cb103162bfc56ac20d12db7a8580ffe 100644 (file)
@@ -1,4 +1,4 @@
-;;; hanja-util.el --- Korean Hanja util module  -*- coding: utf-8 -*-
+;;; hanja-util.el --- Korean Hanja util module  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2008-2021 Free Software Foundation, Inc.
 
index 389565669a93cd1396533eabe6d2684b0203a70c..c55d23f72d695e1c1a474fbe3d3366ed353f6c8d 100644 (file)
@@ -245,9 +245,9 @@ Bidirectional editing is supported.")))
        (pattern2 (concat base "\u200D" combining)))
   (set-char-table-range
    composition-function-table '(#x591 . #x5C7)
-   (list (vector pattern2 3 'hebrew-shape-gstring)
-        (vector pattern2 2 'hebrew-shape-gstring)
-        (vector pattern1 1 'hebrew-shape-gstring)
+   (list (vector pattern2 3 #'hebrew-shape-gstring)
+        (vector pattern2 2 #'hebrew-shape-gstring)
+        (vector pattern1 1 #'hebrew-shape-gstring)
         [nil 0 hebrew-shape-gstring]))
   ;; Exclude non-combining characters.
   (set-char-table-range
index 4bd1cd76a6d94dc1b7768bcdb28ae71bef0ffbc4..8d4b2a826e63328025740087795365c8417d1036 100644 (file)
@@ -1,4 +1,4 @@
-;;; ind-util.el --- Transliteration and Misc. Tools for Indian Languages -*- coding: utf-8-emacs; -*-
+;;; ind-util.el --- Transliteration and Misc. Tools for Indian Languages -*- coding: utf-8-emacs; lexical-binding: t; -*-
 
 ;; Copyright (C) 2001-2021 Free Software Foundation, Inc.
 
@@ -40,7 +40,7 @@
 (defun indian-regexp-of-hashtbl-keys (hashtbl)
   "Return the regular expression of hash table keys."
   (let (keys)
-    (maphash (lambda (key val) (push key keys)) hashtbl)
+    (maphash (lambda (key _val) (push key keys)) hashtbl)
     (regexp-opt keys)))
 
 (defvar indian-dev-base-table
        (let ((regexp ,(indian-regexp-of-hashtbl-keys
                       (if encode-p (car (eval hashtable))
                         (cdr (eval hashtable))))))
-        (narrow-to-region from to)
+        (narrow-to-region ,from ,to)
         (goto-char (point-min))
         (while (re-search-forward regexp nil t)
           (let ((matchstr (gethash (match-string 0)
 
 ;; The followings provide conversion between IS 13194 (ISCII) and UCS.
 
-(let
+(dlet
     ;;Unicode vs IS13194  ;; only Devanagari is supported now.
     ((ucs-devanagari-to-is13194-alist
       '((?\x0900 . "[U+0900]")
@@ -820,11 +820,11 @@ Returns new end position."
     (save-restriction
       (narrow-to-region from to)
       (goto-char (point-min))
-      (let* ((current-repertory is13194-default-repertory))
+      ;; (let* ((current-repertory is13194-default-repertory))
        (while (re-search-forward indian-ucs-to-is13194-regexp nil t)
          (replace-match
           (get-char-code-property (string-to-char (match-string 0))
-                                  'iscii))))
+                                  'iscii)));; )
       (point-max))))
 
 (defun indian-iscii-to-ucs-region (from to)
@@ -1246,7 +1246,7 @@ Returns new end position."
   (interactive "r")
   (save-excursion
     (save-restriction
-      (let ((pos from)
+      (let (;; (pos from)
            (alist (char-table-extra-slot indian-2-column-to-ucs-chartable 0)))
        (narrow-to-region from to)
        (decompose-region from to)
index 5ff57966c1206dd3d200bea072165b79c7ce761c..6f9d27038495087c04b23fe288b564a6d458d4d8 100644 (file)
@@ -381,7 +381,7 @@ South Indian language Malayalam is supported in this language environment."))
         (if slot
             (set-char-table-range
              composition-function-table key
-             (list (vector (cdr slot) 0 'font-shape-gstring))))))
+             (list (vector (cdr slot) 0 #'font-shape-gstring))))))
    char-script-table))
 
 (provide 'indian)
index 9dce17c49677825bcee690e6a1acab5ac7e673a4..948bfef9f224110607f4571f8fbd5303a0f2e810 100644 (file)
@@ -1,4 +1,4 @@
-;;; japan-util.el --- utilities for Japanese
+;;; japan-util.el --- utilities for Japanese  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2001-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -236,7 +236,7 @@ of which charset is `japanese-jisx0201-kana'."
               (composition
                (and (not hankaku)
                     (get-char-code-property kana 'kana-composition)))
-              next slot)
+              slot) ;; next
          (if (and composition (setq slot (assq (following-char) composition)))
              (japanese-replace-region (match-beginning 0) (1+ (point))
                                       (cdr slot))
@@ -258,7 +258,7 @@ of which charset is `japanese-jisx0201-kana'."
       (while (re-search-forward "\\cK\\|\\ck" nil t)
        (let* ((kata (preceding-char))
               (composition (get-char-code-property kata 'kana-composition))
-              next slot)
+              slot) ;; next
          (if (and composition (setq slot (assq (following-char) composition)))
              (japanese-replace-region (match-beginning 0) (1+ (point))
                                       (get-char-code-property
@@ -305,7 +305,7 @@ Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char."
                      (re-search-forward "\\ca\\|\\ck" nil t)))
        (let* ((hankaku (preceding-char))
               (composition (get-char-code-property hankaku 'kana-composition))
-              next slot)
+              slot) ;; next
          (if (and composition (setq slot (assq (following-char) composition)))
              (japanese-replace-region (match-beginning 0) (1+ (point))
                                       (cdr slot))
index 37173c9fb95db0e3a44c802fa704b342cfd365a2..6f08e60d601aa163744d8651000f9db37092aabe 100644 (file)
@@ -31,7 +31,7 @@
           (documentation . t)))
 
 (let ((val (list (vector "[\x1780-\x17FF\x19E0-\x19FF\x200C\x200D]+"
-                        0 'font-shape-gstring))))
+                        0 #'font-shape-gstring))))
   (set-char-table-range composition-function-table '(#x1780 . #x17FF) val)
   (set-char-table-range composition-function-table '(#x19E0 . #x19FF) val))
 
index eb7b85bce81f77181f4878efdc6155d96356409e..c99ff3c3f2df7ada6ecb351297c99fc866e3bb2d 100644 (file)
@@ -1,4 +1,4 @@
-;;; korea-util.el --- utilities for Korean
+;;; korea-util.el --- utilities for Korean  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 1997, 1999, 2001-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
@@ -45,7 +45,7 @@
     (activate-input-method
      (concat "korean-hangul" default-korean-keyboard))))
 
-(defun quail-hangul-switch-symbol-ksc (&rest ignore)
+(defun quail-hangul-switch-symbol-ksc (&rest _ignore)
   "Switch to/from Korean symbol package."
   (interactive "i")
   (and current-input-method
@@ -54,7 +54,7 @@
                                          default-korean-keyboard))
         (activate-input-method "korean-symbol"))))
 
-(defun quail-hangul-switch-hanja (&rest ignore)
+(defun quail-hangul-switch-hanja (&rest _ignore)
   "Switch to/from Korean hanja package."
   (interactive "i")
   (and current-input-method
index 22b33a440efc06322fcb892f4cbc6b5ed5ef3bce..bdf8240de968f86c4fdf2fd13fde5f996a32a628 100644 (file)
@@ -92,10 +92,10 @@ and the following key bindings are available within Korean input methods:
        (pattern (concat choseong jungseong jongseong)))
   (set-char-table-range composition-function-table
                         '(#x1100 . #x115F)
-                        (list (vector pattern 0 'font-shape-gstring)))
+                        (list (vector pattern 0 #'font-shape-gstring)))
   (set-char-table-range composition-function-table
                         '(#xA960 . #xA97C)
-                        (list (vector pattern 0 'font-shape-gstring))))
+                        (list (vector pattern 0 #'font-shape-gstring))))
 
 (provide 'korean)
 
index 59c9850b1a166fd0a699353dd2547c8b12b84385..c8c3fe4f7e6e98a32d003a25369db52ab7ca5d86 100644 (file)
@@ -1,4 +1,4 @@
-;;; lao-util.el --- utilities for Lao -*- coding: utf-8; -*-
+;;; lao-util.el --- utilities for Lao -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2001-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
@@ -498,10 +498,10 @@ syllable.  In that case, FROM and TO are indexes to STR."
       (compose-gstring-for-graphic gstring direction)
     (or (font-shape-gstring gstring direction)
        (let ((glyph-len (lgstring-glyph-len gstring))
-             (i 0)
-             glyph)
+             (i 0)) ;; glyph
          (while (and (< i glyph-len)
-                     (setq glyph (lgstring-glyph gstring i)))
+                     ;; (setq glyph
+                     (lgstring-glyph gstring i)) ;;)
            (setq i (1+ i)))
          (compose-glyph-string-relative gstring 0 i 0.1)))))
 
index 5252f1e60ea548ac43b941e1072b94e6a760ad59..c699d57c15a73251b7eb1496a24521cda48be60d 100644 (file)
@@ -66,7 +66,7 @@
                                        (t (string c))))
                              (cdr l) ""))
           ;; Element of composition-function-table.
-          (elt (list (vector regexp 1 'lao-composition-function)
+          (elt (list (vector regexp 1 #'lao-composition-function)
                      fallback-rule))
           ch)
       (dotimes (i len)
index 0a274f144c2301bc35ce560e07536bc81b6f038d..a2ca678b2be785bd6c1e568fef9d4e505aedadc4 100644 (file)
@@ -137,9 +137,9 @@ thin (i.e. 1-dot width) space."
  composition-function-table
  '(#x600 . #x74F)
  (list (vector "[\u200C\u200D][\u0600-\u074F\u200C\u200D]+"
-               1 'arabic-shape-gstring)
+               1 #'arabic-shape-gstring)
        (vector "[\u0600-\u074F\u200C\u200D]+"
-               0 'arabic-shape-gstring)))
+               0 #'arabic-shape-gstring)))
 
 ;; The Egyptian Hieroglyph Format Controls were introduced in Unicode
 ;; Standard v12.0.  Apparently, they are not yet well supported in
@@ -186,13 +186,13 @@ thin (i.e. 1-dot width) space."
                  ;; doesn't support these controls, the glyphs are
                  ;; displayed individually, and not as a single
                  ;; grapheme cluster.
-                 1 'font-shape-gstring)))
+                 1 #'font-shape-gstring)))
   ;; Grouping controls
   (set-char-table-range
    composition-function-table
    #x13437
    (list (vector "\U00013437[\U00013000-\U0001343F]+"
-                 0 'egyptian-shape-grouping))))
+                 0 #'egyptian-shape-grouping))))
 
 (provide 'misc-lang)
 
index 90fc41c1c41c6b6f75ad8152c57964224f24cb60..99a104ec339fa43f394ba865940ea696e685ed95 100644 (file)
@@ -43,6 +43,6 @@
         "[\u0D85-\u0D96][\u0D82-\u0D83]?\\|"
         ;; any other singleton characters
         "[\u0D80-\u0DFF]")
-       0 'font-shape-gstring)))
+       0 #'font-shape-gstring)))
 
 ;; sinhala.el ends here
index 17abf136f7f41d10fb4e24c4e3a31c2521f1383c..4549b111a3dd2acabe0d9b3661a8ce936858acb5 100644 (file)
@@ -30,7 +30,7 @@
 
 (set-char-table-range composition-function-table
                      '(#xAA80 . #xAADF)
-                     'tai-viet-composition-function)
+                     #'tai-viet-composition-function)
 
 (set-language-info-alist
  "TaiViet" '((charset unicode)
index f9c57e8ca83c1d3f3243b1c1860894a4b150cc8d..e11a05445c748a5e7ba2480d1e6d665f4e5cf682 100644 (file)
@@ -1,4 +1,4 @@
-;;; thai-util.el --- utilities for Thai -*- coding: utf-8; -*-
+;;; thai-util.el --- utilities for Thai -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2000-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -232,10 +232,10 @@ positions (integers or markers) specifying the region."
        (let ((glyph-len (lgstring-glyph-len gstring))
              (last-char (lgstring-char gstring
                                        (1- (lgstring-char-len gstring))))
-             (i 0)
-             glyph)
+             (i 0)) ;; glyph
          (while (and (< i glyph-len)
-                     (setq glyph (lgstring-glyph gstring i)))
+                     ;; (setq glyph
+                     (lgstring-glyph gstring i)) ;; )
            (setq i (1+ i)))
          (if (= last-char ?ำ)
              (setq i (1- i)))
index 94c6ab989795f8e1bc8ffe0fe3098bde4656b5fe..ff1e80298ba63540821637dd1a3165fd6d3303ac 100644 (file)
@@ -1,4 +1,4 @@
-;;; thai-word.el -- find Thai word boundaries
+;;; thai-word.el -- find Thai word boundaries  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
@@ -10973,8 +10973,7 @@ If COUNT is negative, move point backward (- COUNT) words."
            ;; special instead of using forward-word.
            (let ((start (point))
                  (limit (match-end 0))
-                 boundaries
-                 tail)
+                 boundaries) ;; tail
              ;; If thai-forward-word has been called within a Thai
              ;; region, we must go back until the Thai region starts
              ;; to do the contextual analysis for finding word
index e741af187406bb6aca10862105f20ce04dbaf72c..ddf4a0c0fb12840c366789543fe664de38f51dd0 100644 (file)
@@ -1,4 +1,4 @@
-;;; tibet-util.el --- utilities for Tibetan   -*- coding: utf-8-emacs; -*-
+;;; tibet-util.el --- utilities for Tibetan   -*- coding: utf-8-emacs; lexical-binding: t; -*-
 
 ;; Copyright (C) 1997, 2001-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -126,42 +126,42 @@ The returned string has no composition information."
        (setq t-str-list (cons (substring str idx) t-str-list)))
     (apply 'concat (nreverse t-str-list))))
 
-;;;
+;;
 ;;; Functions for composing/decomposing Tibetan sequence.
-;;;
-;;; A Tibetan syllable is typically structured as follows:
-;;;
-;;;      [Prefix] C [C+] V [M] [Suffix [Post suffix]]
-;;;
-;;; where C's are all vertically stacked, V appears below or above
-;;; consonant cluster and M is always put above the C[C+]V combination.
-;;; (Sanskrit visarga, though it is a vowel modifier, is considered
-;;;  to be a punctuation.)
-;;;
-;;; Here are examples of the words "bsgrubs" and "hfauM"
-;;;
-;;;            བསྒྲུབས            ཧཱུཾ
-;;;
-;;;                             M
-;;;             b s b s         h
-;;;               g             fa
-;;;               r             u
-;;;               u
-;;;
-;;; Consonants `'' (འ), `w' (ཝ), `y' (ཡ), `r' (ར) take special
-;;; forms when they are used as subjoined consonant.  Consonant `r'
-;;; takes another special form when used as superjoined in such a case
-;;; as "rka", while it does not change its form when conjoined with
-;;; subjoined `'', `w' or `y' as in "rwa", "rya".
-
-;; Append a proper composition rule and glyph to COMPONENTS to compose
-;; CHAR with a composition that has COMPONENTS.
+;;
+;; A Tibetan syllable is typically structured as follows:
+;;
+;;      [Prefix] C [C+] V [M] [Suffix [Post suffix]]
+;;
+;; where C's are all vertically stacked, V appears below or above
+;; consonant cluster and M is always put above the C[C+]V combination.
+;; (Sanskrit visarga, though it is a vowel modifier, is considered
+;;  to be a punctuation.)
+;;
+;; Here are examples of the words "bsgrubs" and "hfauM"
+;;
+;;            བསྒྲུབས            ཧཱུཾ
+;;
+;;                             M
+;;             b s b s         h
+;;               g             fa
+;;               r             u
+;;               u
+;;
+;; Consonants `'' (འ), `w' (ཝ), `y' (ཡ), `r' (ར) take special
+;; forms when they are used as subjoined consonant.  Consonant `r'
+;; takes another special form when used as superjoined in such a case
+;; as "rka", while it does not change its form when conjoined with
+;; subjoined `'', `w' or `y' as in "rwa", "rya".
+
+; Append a proper composition rule and glyph to COMPONENTS to compose
+; CHAR with a composition that has COMPONENTS.
 
 (defun tibetan-add-components (components char)
   (let ((last (last components))
        (stack-upper '(tc . bc))
        (stack-under '(bc . tc))
-       rule comp-vowel tmp)
+       rule comp-vowel)
     ;; Special treatment for 'a chung.
     ;; If 'a follows a consonant, turn it into the subjoined form.
     ;; * Disabled by Tomabechi 2000/06/09 *
@@ -246,7 +246,7 @@ The returned string has no composition information."
 (defun tibetan-compose-region (beg end)
   "Compose Tibetan text the region BEG and END."
   (interactive "r")
-  (let (str result chars)
+  ;; (let (str result chars)
     (save-excursion
       (save-restriction
        (narrow-to-region beg end)
@@ -272,7 +272,7 @@ The returned string has no composition information."
            (while (< (point) to)
              (tibetan-add-components components (following-char))
              (forward-char 1))
-           (compose-region from to components)))))))
+           (compose-region from to components)))))) ;; )
 
 (defvar tibetan-decompose-precomposition-alist
   (mapcar (lambda (x) (cons (string-to-char (cdr x)) (car x)))
index edd9d765b1e49c7e7a18450996278a5758101102..48c7638948cb9c4b3c684601059f6659ab2022b5 100644 (file)
@@ -605,7 +605,7 @@ This also matches some punctuation characters which need conversion.")
 ;; For automatic composition.
 (set-char-table-range
  composition-function-table '(#xF00 . #xFD1)
- (list (vector tibetan-composable-pattern 0 'font-shape-gstring)))
+ (list (vector tibetan-composable-pattern 0 #'font-shape-gstring)))
 
 (provide 'tibetan)
 
index 7ce8ee1e500951ad1d4b3c20ea6c5527e9397ae5..1a530d350f254800f9f0d0c8501398e5279384d8 100644 (file)
@@ -1,4 +1,4 @@
-;;; tv-util.el --- support for Tai Viet                        -*- coding: utf-8 -*-
+;;; tv-util.el --- support for Tai Viet                -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2007, 2008, 2009, 2010, 2011
 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
 
 
 ;;;###autoload
-(defun tai-viet-composition-function (from to font-object string _direction)
+(defun tai-viet-composition-function (from _to _font-object string _direction)
   (if string
       (if (string-match tai-viet-re string from)
          (tai-viet-compose-string from (match-end 0) string))
index 177b04bc47320bdd1ff3c952d12727a7c8631ae8..bfaf0f3b94a0a2b721d02254ee08031f88163068 100644 (file)
@@ -1,4 +1,4 @@
-;;; viet-util.el --- utilities for Vietnamese  -*- coding: utf-8; -*-
+;;; viet-util.el --- utilities for Vietnamese  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 1998, 2001-2021 Free Software Foundation, Inc.
 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,