mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
Merge branch 'scratch/no-purespace' into 'master'
This commit is contained in:
commit
bf97946d7d
181 changed files with 2108 additions and 9370 deletions
|
|
@ -56,7 +56,7 @@
|
|||
"CCL program to encode an Ethiopic code to code point of Ethiopic font.")
|
||||
|
||||
(setq font-ccl-encoder-alist
|
||||
(cons (cons (purecopy "ethiopic") ccl-encode-ethio-font) font-ccl-encoder-alist))
|
||||
(cons (cons "ethiopic" ccl-encode-ethio-font) font-ccl-encoder-alist))
|
||||
|
||||
(set-language-info-alist
|
||||
"Ethiopic" '((setup-function . setup-ethiopic-environment-internal)
|
||||
|
|
|
|||
|
|
@ -29,10 +29,10 @@
|
|||
|
||||
;;;###autoload
|
||||
(defvar default-korean-keyboard
|
||||
(purecopy (if (string-search "3" (or (getenv "HANGUL_KEYBOARD_TYPE") ""))
|
||||
(if (string-search "3" (or (getenv "HANGUL_KEYBOARD_TYPE") ""))
|
||||
"3"
|
||||
""))
|
||||
"The kind of Korean keyboard for Korean (Hangul) input method.
|
||||
"")
|
||||
"The kind of Korean keyboard for Korean (Hangul) input method.
|
||||
\"\" for 2, \"3\" for 3, and \"3f\" for 3f.")
|
||||
|
||||
;; functions useful for Korean text input
|
||||
|
|
|
|||
|
|
@ -574,19 +574,17 @@ The result of matching is to be used for indexing alists at conversion
|
|||
from a roman transcription to the corresponding Tibetan character.")
|
||||
|
||||
(defvar tibetan-precomposed-regexp
|
||||
(purecopy
|
||||
(eval-when-compile
|
||||
(concat "^"
|
||||
(regexp-opt (mapcar #'car tibetan-precomposed-transcription-alist)
|
||||
t))))
|
||||
(eval-when-compile
|
||||
(concat "^"
|
||||
(regexp-opt (mapcar #'car tibetan-precomposed-transcription-alist)
|
||||
t)))
|
||||
"Regexp string to match a romanized Tibetan complex consonant.
|
||||
The result of matching is to be used for indexing alists when the input key
|
||||
from an input method is converted to the corresponding precomposed glyph.")
|
||||
|
||||
(defvar tibetan-precomposition-rule-regexp
|
||||
(purecopy
|
||||
(eval-when-compile
|
||||
(regexp-opt (mapcar #'car tibetan-precomposition-rule-alist) t)))
|
||||
(eval-when-compile
|
||||
(regexp-opt (mapcar #'car tibetan-precomposition-rule-alist) t))
|
||||
"Regexp string to match a sequence of Tibetan consonantic components.
|
||||
That is, one base consonant and one or more subjoined consonants.
|
||||
The result of matching is to be used for indexing alist when the component
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue