2021-01-26 21:11:49 -05:00
|
|
|
|
;;; tibet-util.el --- utilities for Tibetan -*- coding: utf-8-emacs; lexical-binding: t; -*-
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2022-01-01 02:45:51 -05:00
|
|
|
|
;; Copyright (C) 1997, 2001-2022 Free Software Foundation, Inc.
|
2006-12-13 01:13:58 +00:00
|
|
|
|
;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
2011-01-02 15:50:46 -08:00
|
|
|
|
;; 2005, 2006, 2007, 2008, 2009, 2010, 2011
|
2005-05-16 07:03:28 +00:00
|
|
|
|
;; National Institute of Advanced Industrial Science and Technology (AIST)
|
|
|
|
|
;; Registration Number H14PRO021
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2008-12-19 05:29:04 +00:00
|
|
|
|
;; Author: Toru TOMABECHI <Toru.Tomabechi@orient.unil.ch>
|
1997-04-05 02:44:02 +00:00
|
|
|
|
;; Keywords: multilingual, Tibetan
|
2008-12-19 05:29:04 +00:00
|
|
|
|
;; Created: Feb. 17. 1997
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 04:29:13 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1997-04-05 02:44:02 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:29:13 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2001-07-16 12:23:00 +00:00
|
|
|
|
;;; History:
|
1997-04-05 02:44:02 +00:00
|
|
|
|
;; 1997.03.13 Modification in treatment of text properties;
|
2011-11-24 23:14:48 -08:00
|
|
|
|
;; Support for some special signs and punctuation.
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;; 1999.10.25 Modification for a new composition way by K.Handa.
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2001-07-16 12:23:00 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1997-04-05 02:44:02 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
2002-04-30 17:24:10 +00:00
|
|
|
|
(defconst tibetan-obsolete-glyphs
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
`(("།" . "།") ; 2 col <-> 1 col
|
|
|
|
|
("༏" . "༏")
|
|
|
|
|
("༐" . "༐")
|
|
|
|
|
("༑" . "༑")
|
|
|
|
|
("ཿ" . "ཿ")
|
|
|
|
|
("་" . "་")
|
|
|
|
|
("༔" . "༔")
|
2002-04-30 17:24:10 +00:00
|
|
|
|
;; Yes these are dirty. But ...
|
2020-05-17 16:50:49 -07:00
|
|
|
|
("༎ ༎" . ,(compose-string (copy-sequence "༎ ༎")
|
|
|
|
|
0 3 [?༎ (Br . Bl) ? (Br . Bl) ?༎]))
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
("༄༅༅" . ,(compose-string
|
2020-05-17 16:50:49 -07:00
|
|
|
|
(copy-sequence "࿁࿂࿂࿂") 0 4
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
[?࿁ (Br . Bl) ?࿂ (Br . Bl) ?࿂ (Br . Bl) ?࿂]))
|
2020-05-17 16:50:49 -07:00
|
|
|
|
("༄༅" . ,(compose-string (copy-sequence "࿁࿂࿂")
|
|
|
|
|
0 3 [?࿁ (Br . Bl) ?࿂ (Br . Bl) ?࿂]))
|
|
|
|
|
("༆" . ,(compose-string (copy-sequence "࿁࿂༙")
|
|
|
|
|
0 3 [?࿁ (Br . Bl) ?࿂ (br . tr) ?༙]))
|
|
|
|
|
("༄" . ,(compose-string (copy-sequence "࿁࿂")
|
|
|
|
|
0 2 [?࿁ (Br . Bl) ?࿂]))))
|
2002-04-30 17:24:10 +00:00
|
|
|
|
|
1997-04-05 02:44:02 +00:00
|
|
|
|
;;;###autoload
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(defun tibetan-char-p (ch)
|
|
|
|
|
"Check if char CH is Tibetan character.
|
lisp/*.el: Fix typos and other trivial doc fixes
* lisp/allout-widgets.el (allout-widgets-auto-activation)
(allout-current-decorated-p):
* lisp/auth-source.el (auth-source-protocols):
* lisp/autorevert.el (auto-revert-set-timer):
* lisp/battery.el (battery-mode-line-limit):
* lisp/calc/calcalg3.el (math-map-binop):
* lisp/calendar/cal-dst.el (calendar-dst-find-startend):
* lisp/calendar/cal-mayan.el (calendar-mayan-long-count-to-absolute):
* lisp/calendar/calendar.el (calendar-date-echo-text)
(calendar-generate-month, calendar-string-spread)
(calendar-cursor-to-date, calendar-read, calendar-read-date)
(calendar-mark-visible-date, calendar-dayname-on-or-before):
* lisp/calendar/diary-lib.el (diary-ordinal-suffix):
* lisp/cedet/ede/autoconf-edit.el (autoconf-new-program)
(autoconf-find-last-macro, autoconf-parameter-strip):
* lisp/cedet/ede/config.el (ede-target-with-config-build):
* lisp/cedet/ede/linux.el (ede-linux--detect-architecture)
(ede-linux--get-architecture):
* lisp/cedet/semantic/complete.el (semantic-collector-calculate-cache)
(semantic-displayer-abstract, semantic-displayer-point-position):
* lisp/cedet/semantic/format.el (semantic-format-face-alist)
(semantic-format-tag-short-doc):
* lisp/cedet/semantic/fw.el (semantic-find-file-noselect):
* lisp/cedet/semantic/idle.el (semantic-idle-scheduler-work-idle-time)
(semantic-idle-breadcrumbs-display-function)
(semantic-idle-breadcrumbs-format-tag-list-function):
* lisp/cedet/semantic/lex.el (semantic-lex-map-types)
(define-lex, define-lex-block-type-analyzer):
* lisp/cedet/semantic/senator.el (senator-search-default-tag-filter):
* lisp/cedet/semantic/symref.el (semantic-symref-result)
(semantic-symref-hit-to-tag-via-db):
* lisp/cedet/semantic/symref.el (semantic-symref-tool-baseclass):
* lisp/cedet/semantic/tag.el (semantic-tag-new-variable)
(semantic-tag-new-include, semantic-tag-new-package)
(semantic-tag-set-faux, semantic-create-tag-proxy)
(semantic-tag-function-parent)
(semantic-tag-components-with-overlays):
* lisp/cedet/srecode/cpp.el (srecode-cpp-namespaces)
(srecode-semantic-handle-:c, srecode-semantic-apply-tag-to-dict):
* lisp/cedet/srecode/dictionary.el (srecode-create-dictionary)
(srecode-dictionary-add-entries, srecode-dictionary-lookup-name)
(srecode-create-dictionaries-from-tags):
* lisp/cmuscheme.el (scheme-compile-region):
* lisp/color.el (color-lab-to-lch):
* lisp/doc-view.el (doc-view-image-width)
(doc-view-set-up-single-converter):
* lisp/dynamic-setting.el (font-setting-change-default-font)
(dynamic-setting-handle-config-changed-event):
* lisp/elec-pair.el (electric-pair-text-pairs)
(electric-pair-skip-whitespace-function)
(electric-pair-string-bound-function):
* lisp/emacs-lisp/avl-tree.el (avl-tree--del-balance)
(avl-tree-member, avl-tree-mapcar, avl-tree-iter):
* lisp/emacs-lisp/bytecomp.el (byte-compile-generate-call-tree):
* lisp/emacs-lisp/checkdoc.el (checkdoc-autofix-flag)
(checkdoc-spellcheck-documentation-flag, checkdoc-ispell)
(checkdoc-ispell-current-buffer, checkdoc-ispell-interactive)
(checkdoc-ispell-message-interactive)
(checkdoc-ispell-message-text, checkdoc-ispell-start)
(checkdoc-ispell-continue, checkdoc-ispell-comments)
(checkdoc-ispell-defun):
* lisp/emacs-lisp/cl-generic.el (cl--generic-search-method):
* lisp/emacs-lisp/eieio-custom.el (eieio-read-customization-group):
* lisp/emacs-lisp/lisp.el (forward-sexp, up-list):
* lisp/emacs-lisp/package-x.el (package--archive-contents-from-file):
* lisp/emacs-lisp/package.el (package-desc)
(package--make-autoloads-and-stuff, package-hidden-regexps):
* lisp/emacs-lisp/tcover-ses.el (ses-exercise-startup):
* lisp/emacs-lisp/testcover.el (testcover-nohits)
(testcover-1value):
* lisp/epg.el (epg-receive-keys, epg-start-edit-key):
* lisp/erc/erc-backend.el (erc-server-processing-p)
(erc-split-line-length, erc-server-coding-system)
(erc-server-send, erc-message):
* lisp/erc/erc-button.el (erc-button-face, erc-button-alist)
(erc-browse-emacswiki):
* lisp/erc/erc-ezbounce.el (erc-ezbounce, erc-ezb-get-login):
* lisp/erc/erc-fill.el (erc-fill-variable-maximum-indentation):
* lisp/erc/erc-log.el (erc-current-logfile):
* lisp/erc/erc-match.el (erc-log-match-format)
(erc-text-matched-hook):
* lisp/erc/erc-netsplit.el (erc-netsplit, erc-netsplit-debug):
* lisp/erc/erc-networks.el (erc-server-alist)
(erc-networks-alist, erc-current-network):
* lisp/erc/erc-ring.el (erc-input-ring-index):
* lisp/erc/erc-speedbar.el (erc-speedbar)
(erc-speedbar-update-channel):
* lisp/erc/erc-stamp.el (erc-timestamp-only-if-changed-flag):
* lisp/erc/erc-track.el (erc-track-position-in-mode-line)
(erc-track-remove-from-mode-line, erc-modified-channels-update)
(erc-track-last-non-erc-buffer, erc-track-sort-by-importance)
(erc-track-get-active-buffer):
* lisp/erc/erc.el (erc-get-channel-user-list)
(erc-echo-notice-hook, erc-echo-notice-always-hook)
(erc-wash-quit-reason, erc-format-@nick):
* lisp/ffap.el (ffap-latex-mode):
* lisp/files.el (abort-if-file-too-large)
(dir-locals--get-sort-score, buffer-stale--default-function):
* lisp/filesets.el (filesets-tree-max-level, filesets-data)
(filesets-update-pre010505):
* lisp/gnus/gnus-agent.el (gnus-agent-flush-cache):
* lisp/gnus/gnus-art.el (gnus-article-encrypt-protocol)
(gnus-button-prefer-mid-or-mail):
* lisp/gnus/gnus-cus.el (gnus-group-parameters):
* lisp/gnus/gnus-demon.el (gnus-demon-handlers)
(gnus-demon-run-callback):
* lisp/gnus/gnus-dired.el (gnus-dired-print):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-buffer):
* lisp/gnus/gnus-range.el (gnus-range-normalize):
* lisp/gnus/gnus-spec.el (gnus-pad-form):
* lisp/gnus/gnus-srvr.el (gnus-server-agent, gnus-server-cloud)
(gnus-server-opened, gnus-server-closed, gnus-server-denied)
(gnus-server-offline):
* lisp/gnus/gnus-sum.el (gnus-refer-thread-use-nnir)
(gnus-refer-thread-limit-to-thread)
(gnus-summary-limit-include-thread, gnus-summary-refer-thread)
(gnus-summary-find-matching):
* lisp/gnus/gnus-util.el (gnus-rescale-image):
* lisp/gnus/gnus.el (gnus-summary-line-format, gnus-no-server):
* lisp/gnus/mail-source.el (mail-source-incoming-file-prefix):
* lisp/gnus/message.el (message-cite-reply-position)
(message-cite-style-outlook, message-cite-style-thunderbird)
(message-cite-style-gmail, message--send-mail-maybe-partially):
* lisp/gnus/mm-extern.el (mm-inline-external-body):
* lisp/gnus/mm-partial.el (mm-inline-partial):
* lisp/gnus/mml-sec.el (mml-secure-message-sign)
(mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
* lisp/gnus/mml2015.el (mml2015-epg-key-image)
(mml2015-epg-key-image-to-string):
* lisp/gnus/nndiary.el (nndiary-reminders, nndiary-get-new-mail):
* lisp/gnus/nnheader.el (nnheader-directory-files-is-safe):
* lisp/gnus/nnir.el (nnir-search-history)
(nnir-imap-search-other, nnir-artlist-length)
(nnir-artlist-article, nnir-artitem-group, nnir-artitem-number)
(nnir-artitem-rsv, nnir-article-group, nnir-article-number)
(nnir-article-rsv, nnir-article-ids, nnir-categorize)
(nnir-retrieve-headers-override-function)
(nnir-imap-default-search-key, nnir-hyrex-additional-switches)
(gnus-group-make-nnir-group, nnir-run-namazu, nnir-read-parms)
(nnir-read-parm, nnir-read-server-parm, nnir-search-thread):
* lisp/gnus/nnmairix.el (nnmairix-default-group)
(nnmairix-propagate-marks):
* lisp/gnus/smime.el (smime-keys, smime-crl-check)
(smime-verify-buffer, smime-noverify-buffer):
* lisp/gnus/spam-report.el (spam-report-url-ping-mm-url):
* lisp/gnus/spam.el (spam-spamassassin-positive-spam-flag-header)
(spam-spamassassin-spam-status-header, spam-sa-learn-rebuild)
(spam-classifications, spam-check-stat, spam-spamassassin-score):
* lisp/help.el (describe-minor-mode-from-symbol):
* lisp/hippie-exp.el (hippie-expand-ignore-buffers):
* lisp/htmlfontify.el (hfy-optimizations, hfy-face-resolve-face)
(hfy-begin-span):
* lisp/ibuf-ext.el (ibuffer-update-saved-filters-format)
(ibuffer-saved-filters, ibuffer-old-saved-filters-warning)
(ibuffer-filtering-qualifiers, ibuffer-repair-saved-filters)
(eval, ibuffer-unary-operand, file-extension, directory):
* lisp/image-dired.el (image-dired-cmd-pngcrush-options):
* lisp/image-mode.el (image-toggle-display):
* lisp/international/ccl.el (ccl-compile-read-multibyte-character)
(ccl-compile-write-multibyte-character):
* lisp/international/kkc.el (kkc-save-init-file):
* lisp/international/latin1-disp.el (latin1-display):
* lisp/international/ogonek.el (ogonek-name-encoding-alist)
(ogonek-information, ogonek-lookup-encoding)
(ogonek-deprefixify-region):
* lisp/isearch.el (isearch-filter-predicate)
(isearch--momentary-message):
* lisp/jsonrpc.el (jsonrpc-connection-send)
(jsonrpc-process-connection, jsonrpc-shutdown)
(jsonrpc--async-request-1):
* lisp/language/tibet-util.el (tibetan-char-p):
* lisp/mail/feedmail.el (feedmail-queue-use-send-time-for-date)
(feedmail-last-chance-hook, feedmail-before-fcc-hook)
(feedmail-send-it-immediately-wrapper, feedmail-find-eoh):
* lisp/mail/hashcash.el (hashcash-generate-payment)
(hashcash-generate-payment-async, hashcash-insert-payment)
(hashcash-verify-payment):
* lisp/mail/rmail.el (rmail-movemail-variant-in-use)
(rmail-get-attr-value):
* lisp/mail/rmailmm.el (rmail-mime-prefer-html, rmail-mime):
* lisp/mail/rmailsum.el (rmail-summary-show-message):
* lisp/mail/supercite.el (sc-raw-mode-toggle):
* lisp/man.el (Man-start-calling):
* lisp/mh-e/mh-acros.el (mh-do-at-event-location)
(mh-iterate-on-messages-in-region, mh-iterate-on-range):
* lisp/mh-e/mh-alias.el (mh-alias-system-aliases)
(mh-alias-reload, mh-alias-ali)
(mh-alias-canonicalize-suggestion, mh-alias-add-alias-to-file)
(mh-alias-add-alias):
* lisp/mouse.el (mouse-save-then-kill):
* lisp/net/browse-url.el (browse-url-default-macosx-browser):
* lisp/net/eudc.el (eudc-set, eudc-variable-protocol-value)
(eudc-variable-server-value, eudc-update-variable)
(eudc-expand-inline):
* lisp/net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
* lisp/net/eudcb-ldap.el (eudc-ldap-get-field-list):
* lisp/net/pop3.el (pop3-list):
* lisp/net/soap-client.el (soap-namespace-put)
(soap-xs-parse-sequence, soap-parse-envelope):
* lisp/net/soap-inspect.el (soap-inspect-xs-complex-type):
* lisp/nxml/rng-xsd.el (rng-xsd-date-to-days):
* lisp/org/ob-C.el (org-babel-prep-session:C)
(org-babel-load-session:C):
* lisp/org/ob-J.el (org-babel-execute:J):
* lisp/org/ob-asymptote.el (org-babel-prep-session:asymptote):
* lisp/org/ob-awk.el (org-babel-execute:awk):
* lisp/org/ob-core.el (org-babel-process-file-name):
* lisp/org/ob-ebnf.el (org-babel-execute:ebnf):
* lisp/org/ob-forth.el (org-babel-execute:forth):
* lisp/org/ob-fortran.el (org-babel-execute:fortran)
(org-babel-prep-session:fortran, org-babel-load-session:fortran):
* lisp/org/ob-groovy.el (org-babel-execute:groovy):
* lisp/org/ob-io.el (org-babel-execute:io):
* lisp/org/ob-js.el (org-babel-execute:js):
* lisp/org/ob-lilypond.el (org-babel-default-header-args:lilypond)
(org-babel-lilypond-compile-post-tangle)
(org-babel-lilypond-display-pdf-post-tangle)
(org-babel-lilypond-tangle)
(org-babel-lilypond-execute-tangled-ly)
(org-babel-lilypond-compile-lilyfile)
(org-babel-lilypond-check-for-compile-error)
(org-babel-lilypond-process-compile-error)
(org-babel-lilypond-mark-error-line)
(org-babel-lilypond-parse-error-line)
(org-babel-lilypond-attempt-to-open-pdf)
(org-babel-lilypond-attempt-to-play-midi)
(org-babel-lilypond-switch-extension)
(org-babel-lilypond-set-header-args):
* lisp/org/ob-lua.el (org-babel-prep-session:lua):
* lisp/org/ob-picolisp.el (org-babel-execute:picolisp):
* lisp/org/ob-processing.el (org-babel-prep-session:processing):
* lisp/org/ob-python.el (org-babel-prep-session:python):
* lisp/org/ob-scheme.el (org-babel-scheme-capture-current-message)
(org-babel-scheme-execute-with-geiser, org-babel-execute:scheme):
* lisp/org/ob-shen.el (org-babel-execute:shen):
* lisp/org/org-agenda.el (org-agenda-entry-types)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-time-grid, org-agenda-sorting-strategy)
(org-agenda-filter-by-category, org-agenda-forward-block):
* lisp/org/org-colview.el (org-columns--overlay-text):
* lisp/org/org-faces.el (org-verbatim, org-cycle-level-faces):
* lisp/org/org-indent.el (org-indent-set-line-properties):
* lisp/org/org-macs.el (org-get-limited-outline-regexp):
* lisp/org/org-mobile.el (org-mobile-files):
* lisp/org/org.el (org-use-fast-todo-selection)
(org-extend-today-until, org-use-property-inheritance)
(org-refresh-effort-properties, org-open-at-point-global)
(org-track-ordered-property-with-tag, org-shiftright):
* lisp/org/ox-html.el (org-html-checkbox-type):
* lisp/org/ox-man.el (org-man-source-highlight)
(org-man-verse-block):
* lisp/org/ox-publish.el (org-publish-sitemap-default):
* lisp/outline.el (outline-head-from-level):
* lisp/progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-calc-command-indent, dcl-indent-to):
* lisp/progmodes/flymake.el (flymake-make-diagnostic)
(flymake--overlays, flymake-diagnostic-functions)
(flymake-diagnostic-types-alist, flymake--backend-state)
(flymake-is-running, flymake--collect, flymake-mode):
* lisp/progmodes/gdb-mi.el (gdb-threads-list, gdb, gdb-non-stop)
(gdb-buffers, gdb-gud-context-call, gdb-jsonify-buffer):
* lisp/progmodes/grep.el (grep-error-screen-columns):
* lisp/progmodes/gud.el (gud-prev-expr):
* lisp/progmodes/ps-mode.el (ps-mode, ps-mode-target-column)
(ps-run-goto-error):
* lisp/progmodes/python.el (python-eldoc-get-doc)
(python-eldoc-function-timeout-permanent, python-eldoc-function):
* lisp/shadowfile.el (shadow-make-group):
* lisp/speedbar.el (speedbar-obj-do-check):
* lisp/textmodes/flyspell.el (flyspell-auto-correct-previous-hook):
* lisp/textmodes/reftex-cite.el (reftex-bib-or-thebib):
* lisp/textmodes/reftex-index.el (reftex-index-goto-entry)
(reftex-index-kill, reftex-index-undo):
* lisp/textmodes/reftex-parse.el (reftex-context-substring):
* lisp/textmodes/reftex.el (reftex-TeX-master-file):
* lisp/textmodes/rst.el (rst-next-hdr, rst-toc)
(rst-uncomment-region, rst-font-lock-extend-region-internal):
* lisp/thumbs.el (thumbs-mode):
* lisp/vc/ediff-util.el (ediff-restore-diff):
* lisp/vc/pcvs-defs.el (cvs-cvsroot, cvs-force-dir-tag):
* lisp/vc/vc-hg.el (vc-hg--ignore-patterns-valid-p):
* lisp/wid-edit.el (widget-field-value-set, string):
* lisp/x-dnd.el (x-dnd-version-from-flags)
(x-dnd-more-than-3-from-flags): Assorted docfixes.
2019-09-21 00:27:53 +02:00
|
|
|
|
Returns non-nil if CH is Tibetan. Otherwise, returns nil."
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(memq (char-charset ch) '(tibetan tibetan-1-column)))
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;;; Functions for Tibetan <-> Tibetan-transcription.
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(defun tibetan-tibetan-to-transcription (str)
|
|
|
|
|
"Transcribe Tibetan string STR and return the corresponding Roman string."
|
|
|
|
|
(let (;; Accumulate transcriptions here in reverse order.
|
|
|
|
|
(trans nil)
|
|
|
|
|
(len (length str))
|
|
|
|
|
(i 0)
|
|
|
|
|
ch this-trans)
|
|
|
|
|
(while (< i len)
|
2000-06-21 02:05:10 +00:00
|
|
|
|
(let ((idx (string-match tibetan-precomposition-rule-regexp str i)))
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(if (eq idx i)
|
|
|
|
|
;; Ith character and the followings matches precomposable
|
|
|
|
|
;; Tibetan sequence.
|
|
|
|
|
(setq i (match-end 0)
|
|
|
|
|
this-trans
|
|
|
|
|
(car (rassoc
|
|
|
|
|
(cdr (assoc (match-string 0 str)
|
|
|
|
|
tibetan-precomposition-rule-alist))
|
|
|
|
|
tibetan-precomposed-transcription-alist)))
|
|
|
|
|
(setq ch (substring str i (1+ i))
|
|
|
|
|
i (1+ i)
|
|
|
|
|
this-trans
|
|
|
|
|
(car (or (rassoc ch tibetan-consonant-transcription-alist)
|
|
|
|
|
(rassoc ch tibetan-vowel-transcription-alist)
|
|
|
|
|
(rassoc ch tibetan-subjoined-transcription-alist)))))
|
|
|
|
|
(setq trans (cons this-trans trans))))
|
|
|
|
|
(apply 'concat (nreverse trans))))
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun tibetan-transcription-to-tibetan (str)
|
|
|
|
|
"Convert Tibetan Roman string STR to Tibetan character string.
|
|
|
|
|
The returned string has no composition information."
|
|
|
|
|
(let (;; Case is significant.
|
|
|
|
|
(case-fold-search nil)
|
|
|
|
|
(idx 0)
|
|
|
|
|
;; Accumulate Tibetan strings here in reverse order.
|
|
|
|
|
(t-str-list nil)
|
|
|
|
|
i subtrans)
|
|
|
|
|
(while (setq i (string-match tibetan-regexp str idx))
|
|
|
|
|
(if (< idx i)
|
|
|
|
|
;; STR contains a pattern that doesn't match Tibetan
|
|
|
|
|
;; transcription. Include the pattern as is.
|
|
|
|
|
(setq t-str-list (cons (substring str idx i) t-str-list)))
|
|
|
|
|
(setq subtrans (match-string 0 str)
|
|
|
|
|
idx (match-end 0))
|
|
|
|
|
(let ((t-char (cdr (assoc subtrans
|
|
|
|
|
tibetan-precomposed-transcription-alist))))
|
|
|
|
|
(if t-char
|
|
|
|
|
;; SUBTRANS corresponds to a transcription for
|
|
|
|
|
;; precomposable Tibetan sequence.
|
|
|
|
|
(setq t-char (car (rassoc t-char
|
|
|
|
|
tibetan-precomposition-rule-alist)))
|
|
|
|
|
(setq t-char
|
|
|
|
|
(cdr
|
|
|
|
|
(or (assoc subtrans tibetan-consonant-transcription-alist)
|
|
|
|
|
(assoc subtrans tibetan-vowel-transcription-alist)
|
|
|
|
|
(assoc subtrans tibetan-modifier-transcription-alist)
|
|
|
|
|
(assoc subtrans tibetan-subjoined-transcription-alist)))))
|
|
|
|
|
(setq t-str-list (cons t-char t-str-list))))
|
|
|
|
|
(if (< idx (length str))
|
|
|
|
|
(setq t-str-list (cons (substring str idx) t-str-list)))
|
|
|
|
|
(apply 'concat (nreverse t-str-list))))
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2021-01-26 21:11:49 -05:00
|
|
|
|
;;
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;;; Functions for composing/decomposing Tibetan sequence.
|
2021-01-26 21:11:49 -05:00
|
|
|
|
;;
|
|
|
|
|
;; 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".
|
1999-12-15 00:50:18 +00:00
|
|
|
|
|
2021-01-26 21:11:49 -05:00
|
|
|
|
; Append a proper composition rule and glyph to COMPONENTS to compose
|
|
|
|
|
; CHAR with a composition that has COMPONENTS.
|
1999-12-15 00:50:18 +00:00
|
|
|
|
|
|
|
|
|
(defun tibetan-add-components (components char)
|
|
|
|
|
(let ((last (last components))
|
|
|
|
|
(stack-upper '(tc . bc))
|
|
|
|
|
(stack-under '(bc . tc))
|
2021-01-26 21:11:49 -05:00
|
|
|
|
rule comp-vowel)
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;; Special treatment for 'a chung.
|
|
|
|
|
;; If 'a follows a consonant, turn it into the subjoined form.
|
2000-06-12 06:11:56 +00:00
|
|
|
|
;; * Disabled by Tomabechi 2000/06/09 *
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
;; Because in Unicode, འ may follow directly a consonant without
|
|
|
|
|
;; any intervening vowel, as in མཁ<E0BD98><E0BD81><EFBFBD><EFBFBD>འ་=མ ཁ འ not མ ཁ <20><><EFBFBD><EFBFBD> འ
|
|
|
|
|
;;(if (and (= char ?འ)
|
2000-06-12 06:11:56 +00:00
|
|
|
|
;; (aref (char-category-set (car last)) ?0))
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
;; (setq char ?ཱ)) ;; modified for new font by Tomabechi 1999/12/10
|
2000-06-12 06:11:56 +00:00
|
|
|
|
|
|
|
|
|
;; Composite vowel signs are decomposed before being added
|
|
|
|
|
;; Added by Tomabechi 2000/06/08
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
(if (memq char '(?ཱི ?ཱུ ?ྲྀ ?ཷ ?ླྀ ?ཹ ?ཱྀ))
|
2000-06-12 06:11:56 +00:00
|
|
|
|
(setq comp-vowel
|
2000-06-21 02:05:10 +00:00
|
|
|
|
(copy-sequence
|
|
|
|
|
(cddr (assoc (char-to-string char)
|
|
|
|
|
tibetan-composite-vowel-alist)))
|
2000-06-12 06:11:56 +00:00
|
|
|
|
char
|
|
|
|
|
(cadr (assoc (char-to-string char)
|
|
|
|
|
tibetan-composite-vowel-alist))))
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(cond
|
|
|
|
|
;; Compose upper vowel sign vertically over.
|
|
|
|
|
((aref (char-category-set char) ?2)
|
|
|
|
|
(setq rule stack-upper))
|
|
|
|
|
|
|
|
|
|
;; Compose lower vowel sign vertically under.
|
|
|
|
|
((aref (char-category-set char) ?3)
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
(if (or (eq char ?<3F><EFBFBD><EFBFBD><EFBFBD>) ;; `<60><><EFBFBD><EFBFBD>' and `' should not visible when composed.
|
2003-09-08 12:53:41 +00:00
|
|
|
|
(eq char #xF70))
|
2000-06-01 10:59:56 +00:00
|
|
|
|
(setq rule nil)
|
|
|
|
|
(setq rule stack-under)))
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;; Transform ra-mgo (superscribed r) if followed by a subjoined
|
|
|
|
|
;; consonant other than w, ', y, r.
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
((and (= (car last) ?ར)
|
|
|
|
|
(not (memq char '(?ྭ ?ཱ ?ྱ ?ྲ))))
|
|
|
|
|
(setcar last ?<3F><EFBFBD><EFBFBD><EFBFBD>) ;; modified for newfont by Tomabechi 1999/12/10
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(setq rule stack-under))
|
|
|
|
|
;; Transform initial base consonant if followed by a subjoined
|
|
|
|
|
;; consonant but 'a.
|
|
|
|
|
(t
|
|
|
|
|
(let ((laststr (char-to-string (car last))))
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
(if (and (/= char ?ཱ) ;; modified for new font by Tomabechi
|
|
|
|
|
(string-match "[ཀ-ཛྷཞཟལ-ཀྵཪ]" laststr))
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(setcar last (string-to-char
|
|
|
|
|
(cdr (assoc (char-to-string (car last))
|
|
|
|
|
tibetan-base-to-subjoined-alist)))))
|
|
|
|
|
(setq rule stack-under))))
|
|
|
|
|
|
2000-06-01 10:59:56 +00:00
|
|
|
|
(if rule
|
2000-06-12 06:11:56 +00:00
|
|
|
|
(setcdr last (list rule char)))
|
|
|
|
|
;; Added by Tomabechi 2000/06/08
|
|
|
|
|
(if comp-vowel
|
|
|
|
|
(nconc last comp-vowel))
|
|
|
|
|
))
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun tibetan-compose-string (str)
|
1999-12-15 00:50:18 +00:00
|
|
|
|
"Compose Tibetan string STR."
|
|
|
|
|
(let ((idx 0))
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
;; `འ' is included in the pattern for subjoined consonants
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;; because we treat it specially in tibetan-add-components.
|
2000-06-12 06:11:56 +00:00
|
|
|
|
;; (This feature is removed by Tomabechi 2000/06/08)
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(while (setq idx (string-match tibetan-composable-pattern str idx))
|
|
|
|
|
(let ((from idx)
|
|
|
|
|
(to (match-end 0))
|
|
|
|
|
components)
|
|
|
|
|
(if (eq (string-match tibetan-precomposition-rule-regexp str idx) idx)
|
|
|
|
|
(setq idx (match-end 0)
|
|
|
|
|
components
|
|
|
|
|
(list (string-to-char
|
|
|
|
|
(cdr
|
|
|
|
|
(assoc (match-string 0 str)
|
|
|
|
|
tibetan-precomposition-rule-alist)))))
|
|
|
|
|
(setq components (list (aref str idx))
|
|
|
|
|
idx (1+ idx)))
|
|
|
|
|
(while (< idx to)
|
|
|
|
|
(tibetan-add-components components (aref str idx))
|
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
|
(compose-string str from to components))))
|
|
|
|
|
str)
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(defun tibetan-compose-region (beg end)
|
|
|
|
|
"Compose Tibetan text the region BEG and END."
|
1997-04-05 02:44:02 +00:00
|
|
|
|
(interactive "r")
|
2021-01-26 21:11:49 -05:00
|
|
|
|
;; (let (str result chars)
|
1997-04-05 02:44:02 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
|
(goto-char (point-min))
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
;; `འ' is included in the pattern for subjoined consonants
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;; because we treat it specially in tibetan-add-components.
|
2000-06-12 06:11:56 +00:00
|
|
|
|
;; (This feature is removed by Tomabechi 2000/06/08)
|
1999-12-15 00:50:18 +00:00
|
|
|
|
(while (re-search-forward tibetan-composable-pattern nil t)
|
|
|
|
|
(let ((from (match-beginning 0))
|
|
|
|
|
(to (match-end 0))
|
|
|
|
|
components)
|
|
|
|
|
(goto-char from)
|
|
|
|
|
(if (looking-at tibetan-precomposition-rule-regexp)
|
|
|
|
|
(progn
|
|
|
|
|
(setq components
|
|
|
|
|
(list (string-to-char
|
|
|
|
|
(cdr
|
|
|
|
|
(assoc (match-string 0)
|
|
|
|
|
tibetan-precomposition-rule-alist)))))
|
|
|
|
|
(goto-char (match-end 0)))
|
|
|
|
|
(setq components (list (char-after from)))
|
|
|
|
|
(forward-char 1))
|
|
|
|
|
(while (< (point) to)
|
|
|
|
|
(tibetan-add-components components (following-char))
|
|
|
|
|
(forward-char 1))
|
2021-01-26 21:11:49 -05:00
|
|
|
|
(compose-region from to components)))))) ;; )
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2000-06-01 10:59:56 +00:00
|
|
|
|
(defvar tibetan-decompose-precomposition-alist
|
2020-09-30 16:18:50 +02:00
|
|
|
|
(mapcar (lambda (x) (cons (string-to-char (cdr x)) (car x)))
|
2000-06-01 10:59:56 +00:00
|
|
|
|
tibetan-precomposition-rule-alist))
|
|
|
|
|
|
1997-04-05 02:44:02 +00:00
|
|
|
|
;;;###autoload
|
2000-06-01 10:59:56 +00:00
|
|
|
|
(defun tibetan-decompose-region (from to)
|
|
|
|
|
"Decompose Tibetan text in the region FROM and TO.
|
2021-09-14 08:43:18 +02:00
|
|
|
|
This is different from `decompose-region' because precomposed
|
|
|
|
|
Tibetan characters are decomposed into normal Tibetan character
|
|
|
|
|
sequences."
|
2000-06-01 10:59:56 +00:00
|
|
|
|
(interactive "r")
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region from to)
|
|
|
|
|
(decompose-region from to)
|
|
|
|
|
(goto-char from)
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(let* ((char (following-char))
|
|
|
|
|
(slot (assq char tibetan-decompose-precomposition-alist)))
|
|
|
|
|
(if slot
|
|
|
|
|
(progn
|
|
|
|
|
(delete-char 1)
|
|
|
|
|
(insert (cdr slot)))
|
|
|
|
|
(forward-char 1))))))
|
|
|
|
|
|
|
|
|
|
|
1999-12-15 00:50:18 +00:00
|
|
|
|
;;;###autoload
|
2000-06-01 10:59:56 +00:00
|
|
|
|
(defun tibetan-decompose-string (str)
|
|
|
|
|
"Decompose Tibetan string STR.
|
2021-09-14 08:43:18 +02:00
|
|
|
|
This is different from `decompose-string' because precomposed
|
|
|
|
|
Tibetan characters are decomposed into normal Tibetan character
|
|
|
|
|
sequences."
|
2000-06-01 10:59:56 +00:00
|
|
|
|
(let ((new "")
|
|
|
|
|
(len (length str))
|
|
|
|
|
(idx 0)
|
|
|
|
|
char slot)
|
|
|
|
|
(while (< idx len)
|
|
|
|
|
(setq char (aref str idx)
|
|
|
|
|
slot (assq (aref str idx) tibetan-decompose-precomposition-alist)
|
|
|
|
|
new (concat new (if slot (cdr slot) (char-to-string char)))
|
|
|
|
|
idx (1+ idx)))
|
|
|
|
|
new))
|
1999-12-15 00:50:18 +00:00
|
|
|
|
|
1997-04-05 02:44:02 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; This variable is used to avoid repeated decomposition.
|
|
|
|
|
;;;
|
|
|
|
|
(setq-default tibetan-decomposed nil)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun tibetan-decompose-buffer ()
|
|
|
|
|
"Decomposes Tibetan characters in the buffer into their components.
|
1999-12-15 00:50:18 +00:00
|
|
|
|
See also the documentation of the function `tibetan-decompose-region'."
|
1997-04-05 02:44:02 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(make-local-variable 'tibetan-decomposed)
|
|
|
|
|
(cond ((not tibetan-decomposed)
|
|
|
|
|
(tibetan-decompose-region (point-min) (point-max))
|
|
|
|
|
(setq tibetan-decomposed t))))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun tibetan-compose-buffer ()
|
|
|
|
|
"Composes Tibetan character components in the buffer.
|
2021-09-14 08:43:18 +02:00
|
|
|
|
See also docstring of the function `tibetan-compose-region'."
|
1997-04-05 02:44:02 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(make-local-variable 'tibetan-decomposed)
|
|
|
|
|
(tibetan-compose-region (point-min) (point-max))
|
|
|
|
|
(setq tibetan-decomposed nil))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun tibetan-post-read-conversion (len)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(let ((buffer-modified-p (buffer-modified-p)))
|
|
|
|
|
(narrow-to-region (point) (+ (point) len))
|
|
|
|
|
(tibetan-compose-region (point-min) (point-max))
|
|
|
|
|
(set-buffer-modified-p buffer-modified-p)
|
1997-10-21 10:45:26 +00:00
|
|
|
|
(make-local-variable 'tibetan-decomposed)
|
|
|
|
|
(setq tibetan-decomposed nil)
|
|
|
|
|
(- (point-max) (point-min))))))
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun tibetan-pre-write-conversion (from to)
|
|
|
|
|
(setq tibetan-decomposed-temp tibetan-decomposed)
|
1998-10-21 11:50:56 +00:00
|
|
|
|
(let ((old-buf (current-buffer)))
|
1998-10-26 08:00:11 +00:00
|
|
|
|
(set-buffer (generate-new-buffer " *temp*"))
|
|
|
|
|
(if (stringp from)
|
|
|
|
|
(insert from)
|
|
|
|
|
(insert-buffer-substring old-buf from to))
|
|
|
|
|
(if (not tibetan-decomposed-temp)
|
|
|
|
|
(tibetan-decompose-region (point-min) (point-max)))
|
1997-05-12 07:00:26 +00:00
|
|
|
|
;; Should return nil as annotations.
|
|
|
|
|
nil))
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2002-05-08 01:50:08 +00:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Unicode-related definitions.
|
2003-02-04 13:24:35 +00:00
|
|
|
|
;;;
|
2002-05-08 01:50:08 +00:00
|
|
|
|
|
|
|
|
|
(defvar tibetan-canonicalize-for-unicode-alist
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
'(("<EFBFBD><EFBFBD><EFBFBD><EFBFBD>" . "") ;; remove vowel a
|
|
|
|
|
("ཱི" . "ཱི") ;; decompose vowels whose use is ``discouraged'' in Unicode 3.0
|
|
|
|
|
("ཱུ" . "ཱུ")
|
|
|
|
|
("ྲྀ" . "ྲྀ")
|
|
|
|
|
("ཷ" . "ྲཱྀ")
|
|
|
|
|
("ླྀ" . "ླྀ")
|
|
|
|
|
("ཹ" . "ླཱྀ")
|
|
|
|
|
("ཱྀ" . "ཱྀ"))
|
2002-05-08 01:50:08 +00:00
|
|
|
|
"Rules for canonicalizing Tibetan vowels for Unicode.")
|
|
|
|
|
|
|
|
|
|
(defvar tibetan-canonicalize-for-unicode-regexp
|
Use UTF-8 for most files with non-ASCII characters.
* admin/notes/unicode (etc/tutorials/TUTORIAL.ko, leim/quail/hanja.el)
(leim/quail/hanja3.el, leim/quail/symbol-ksc.el):
Now utf-8, not iso-2022-7bit. Also, files that contain non-UTF-8
characters are now encoded in utf-8-emacs, not iso-2022-7bit.
* etc/tutorials/TUTORIAL.ko, tutorials/TUTORIAL.th:
Switch from iso-2022-7bit to utf-8.
* leim/quail/cyrillic.el, leim/quail/czech.el, leim/quail/ethiopic.el:
* leim/quail/greek.el, leim/quail/hanja.el, leim/quail/hanja3.el:
* leim/quail/hebrew.el, leim/quail/lao.el, leim/quail/lrt.el:
* leim/quail/slovak.el, leim/quail/symbol-ksc.el, leim/quail/thai.el:
* leim/quail/tibetan.el, leim/quail/viqr.el, leim/quail/vntelex.el:
* leim/quail/vnvni.el, leim/quail/welsh.el:
* lisp/international/latin1-disp.el, lisp/international/mule-util.el:
* lisp/language/cyril-util.el, lisp/language/european.el:
* lisp/language/ind-util.el, lisp/language/lao-util.el, lisp/language/thai.el:
* lisp/language/tibet-util.el, lisp/language/tibetan.el:
* lisp/language/viet-util.el:
Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
Fixes: debbugs:13936
2013-04-01 18:18:40 -07:00
|
|
|
|
"[<5B><><EFBFBD><EFBFBD>ཱཱིུྲྀཷླྀཹཱྀ]"
|
2002-05-08 01:50:08 +00:00
|
|
|
|
"Regexp for Tibetan vowels to be canonicalized in Unicode.")
|
|
|
|
|
|
|
|
|
|
(defun tibetan-canonicalize-for-unicode-region (from to)
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region from to)
|
|
|
|
|
(goto-char from)
|
|
|
|
|
(while (re-search-forward tibetan-canonicalize-for-unicode-regexp nil t)
|
|
|
|
|
(let (
|
|
|
|
|
;;(from (match-beginning 0))
|
|
|
|
|
;;(to (match-end 0))
|
|
|
|
|
(canonical-form
|
|
|
|
|
(cdr (assoc (match-string 0)
|
|
|
|
|
tibetan-canonicalize-for-unicode-alist))))
|
|
|
|
|
;;(goto-char from)
|
|
|
|
|
;;(delete-region from to)
|
|
|
|
|
;;(insert canonical-form)
|
|
|
|
|
(replace-match canonical-form)
|
|
|
|
|
))))
|
|
|
|
|
|
|
|
|
|
(defvar tibetan-strict-unicode t
|
2012-04-09 21:05:48 +08:00
|
|
|
|
"Flag to control Tibetan canonicalizing for Unicode.
|
2002-05-08 01:50:08 +00:00
|
|
|
|
|
|
|
|
|
If non-nil, the vowel a is removed and composite vowels are decomposed
|
|
|
|
|
before writing buffer in Unicode. See also
|
|
|
|
|
`tibetan-canonicalize-for-unicode-regexp' and
|
|
|
|
|
`tibetan-canonicalize-for-unicode-alist'.")
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun tibetan-pre-write-canonicalize-for-unicode (from to)
|
|
|
|
|
(let ((old-buf (current-buffer))
|
|
|
|
|
(strict-unicode tibetan-strict-unicode))
|
|
|
|
|
(set-buffer (generate-new-buffer " *temp*"))
|
|
|
|
|
(if (stringp from)
|
|
|
|
|
(insert from)
|
|
|
|
|
(insert-buffer-substring old-buf from to))
|
|
|
|
|
(if strict-unicode
|
|
|
|
|
(tibetan-canonicalize-for-unicode-region (point-min) (point-max)))
|
|
|
|
|
;; Should return nil as annotations.
|
|
|
|
|
nil))
|
|
|
|
|
|
1997-06-18 13:06:17 +00:00
|
|
|
|
(provide 'tibet-util)
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
2001-07-16 12:23:00 +00:00
|
|
|
|
;;; tibet-util.el ends here
|