emacs/lisp/language/cyril-util.el

199 lines
7.5 KiB
EmacsLisp
Raw Normal View History

;;; cyril-util.el --- utilities for Cyrillic scripts -*- lexical-binding: t; -*-
1997-05-28 03:41:18 +00:00
2022-01-01 02:45:51 -05:00
;; Copyright (C) 1997-1998, 2001-2022 Free Software Foundation, Inc.
1997-05-28 03:41:18 +00:00
;; Keywords: mule, multilingual, Cyrillic
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
1997-05-28 03:41:18 +00:00
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
1997-05-28 03:41:18 +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
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
1997-05-28 03:41:18 +00:00
;;; Commentary:
1997-05-28 03:41:18 +00:00
;;; Code:
2002-07-24 22:23:44 +00:00
;; Fixme: are the next two useful?
;;;###autoload
(defun cyrillic-encode-koi8-r-char (char)
"Return KOI8-R external character code of CHAR if appropriate."
(encode-char char 'koi8-r))
;;;###autoload
(defun cyrillic-encode-alternativnyj-char (char)
"Return ALTERNATIVNYJ external character code of CHAR if appropriate."
(encode-char char 'alternativnyj))
;; Display
;; Written by Valery Alexeev <valery@math.uga.edu>.
(defvar cyrillic-language-alist
(list '("Belarusian") '("Bulgarian") '("Macedonian")
'("Russian") '("Serbo-Croatian") '("Ukrainian"))
"List of known cyrillic languages.")
;;;###autoload
(defun standard-display-cyrillic-translit (&optional cyrillic-language)
2020-08-10 01:03:09 +02:00
"Display a Cyrillic buffer using a transliteration.
For readability, the table is slightly
different from the one used for the input method `cyrillic-translit'.
The argument is a string which specifies which language you are using;
that affects the choice of transliterations slightly.
Possible values are listed in `cyrillic-language-alist'.
If the argument is t, we use the default cyrillic transliteration.
If the argument is nil, we return the display table to its standard state."
(interactive
(list
(let* ((completion-ignore-case t))
(completing-read
Use format-prompt for many more prompts * lisp/bookmark.el (bookmark-completing-read): * lisp/calc/calc-prog.el (calc-user-define-formula): * lisp/calc/calc-store.el (calc-permanent-variable): * lisp/calc/calc-units.el (calc-convert-units) (calc-convert-exact-units, calc-convert-temperature): * lisp/cedet/semantic/complete.el (semantic-complete-read-tag-engine): * lisp/cus-edit.el (customize-read-group): * lisp/dired-aux.el (dired-do-chxxx): * lisp/dired-x.el (dired-mark-unmarked-files): * lisp/emacs-lisp/debug.el (cancel-debug-on-entry) (cancel-debug-on-variable-change): * lisp/emacs-lisp/edebug.el (edebug-cancel-on-entry) (edebug-remove-instrumentation): * lisp/epa.el (epa-read-file-name, epa-export-keys): * lisp/faces.el (read-face-name): * lisp/format.el (format-decode-buffer, format-decode-region): * lisp/gnus/gnus-art.el (gnus-read-save-file-name): * lisp/gnus/gnus-util.el (gnus-completing-read): * lisp/gnus/message.el (message-check-news-header-syntax): * lisp/info.el (Info-follow-reference): * lisp/international/mule-diag.el (describe-font) (describe-fontset): * lisp/international/quail.el (quail-show-keyboard-layout): * lisp/language/cyril-util.el (standard-display-cyrillic-translit): * lisp/mail/rmailkwd.el (rmail-read-label): * lisp/mail/rmailmm.el (rmail-mime-save): * lisp/mail/rmailout.el (rmail-output-read-file-name): * lisp/man.el (Man-goto-section, Man-follow-manual-reference): * lisp/menu-bar.el (emacs-index--prompt): * lisp/net/ange-ftp.el (ange-ftp-get-passwd): * lisp/proced.el (proced-send-signal): * lisp/progmodes/cpp.el (cpp-choose-face): * lisp/progmodes/ebrowse.el (ebrowse-set-tree-indentation): * lisp/progmodes/etags.el (visit-tags-table) (visit-tags-table-buffer): * lisp/progmodes/grep.el (grep-read-files): * lisp/progmodes/hideif.el (hide-ifdef-define): * lisp/progmodes/pascal.el (pascal-goto-defun): * lisp/progmodes/prolog.el (prolog-read-predicate): * lisp/progmodes/sql.el (sql-get-login-ext): * lisp/ses.el (ses-define-local-printer): * lisp/textmodes/artist.el (artist-figlet-choose-font): * lisp/textmodes/tex-mode.el (tex-compile): * lisp/vc/diff.el (diff): * lisp/vc/ediff-ptch.el (ediff-prompt-for-patch-file): * lisp/vc/ediff-util.el (ediff-read-file-name): * lisp/vc/pcvs.el (cvs-mode-mark-on-state): * lisp/vc/vc.el (vc-diff-build-argument-list-internal) (vc-revision-other-window, vc-retrieve-tag): * lisp/wid-edit.el: Prefer format-prompt unconditionally. * lisp/org/org-capture.el (org-capture-fill-template): * lisp/org/org-refile.el (org-refile-get-location): * lisp/progmodes/python.el (python-eldoc-at-point): * lisp/progmodes/verilog-mode.el (verilog-surelint-off) (verilog-goto-defun): * lisp/progmodes/xref.el (xref--read-identifier): Prefer format-prompt when it is fboundp.
2021-10-05 03:34:08 +02:00
(format-prompt "Cyrillic language" "nil")
cyrillic-language-alist nil t nil nil nil))))
(or standard-display-table
(setq standard-display-table (make-display-table)))
(if (equal cyrillic-language "")
(setq cyrillic-language nil))
(if (null cyrillic-language)
(setq standard-display-table (make-display-table))
(aset standard-display-table ?а [?a])
(aset standard-display-table ?б [?b])
(aset standard-display-table [?v])
(aset standard-display-table ?г [?g])
(aset standard-display-table [?d])
(aset standard-display-table ?е [?e])
(aset standard-display-table [?y ?o])
(aset standard-display-table [?z ?h])
(aset standard-display-table [?z])
(aset standard-display-table [?i])
(aset standard-display-table [?j])
(aset standard-display-table [?k])
(aset standard-display-table [?l])
(aset standard-display-table [?m])
(aset standard-display-table [?n])
(aset standard-display-table ?о [?o])
(aset standard-display-table ?п [?p])
(aset standard-display-table ?р [?r])
(aset standard-display-table ?с [?s])
(aset standard-display-table [?t])
(aset standard-display-table ?у [?u])
(aset standard-display-table [?f])
(aset standard-display-table ?х [?k ?h])
(aset standard-display-table [?t ?s])
(aset standard-display-table [?c ?h])
(aset standard-display-table [?s ?h])
(aset standard-display-table [?s ?c ?h])
(aset standard-display-table [?~])
(aset standard-display-table [?y])
(aset standard-display-table [?'])
(aset standard-display-table [?e ?'])
(aset standard-display-table [?y ?u])
(aset standard-display-table [?y ?a])
(aset standard-display-table ?А [?A])
(aset standard-display-table [?B])
(aset standard-display-table ?В [?V])
(aset standard-display-table [?G])
(aset standard-display-table [?D])
(aset standard-display-table ?Е [?E])
(aset standard-display-table [?Y ?o])
(aset standard-display-table [?Z ?h])
(aset standard-display-table ?З [?Z])
(aset standard-display-table [?I])
(aset standard-display-table [?J])
(aset standard-display-table ?К [?K])
(aset standard-display-table [?L])
(aset standard-display-table ?М [?M])
(aset standard-display-table ?Н [?N])
(aset standard-display-table ?О [?O])
(aset standard-display-table [?P])
(aset standard-display-table ?Р [?R])
(aset standard-display-table ?С [?S])
(aset standard-display-table ?Т [?T])
(aset standard-display-table ?У [?U])
(aset standard-display-table [?F])
(aset standard-display-table ?Х [?K ?h])
(aset standard-display-table [?T ?s])
(aset standard-display-table [?C ?h])
(aset standard-display-table [?S ?h])
(aset standard-display-table [?S ?c ?h])
(aset standard-display-table [?~])
(aset standard-display-table [?Y])
(aset standard-display-table ?Ь [?'])
(aset standard-display-table [?E ?'])
(aset standard-display-table [?Y ?u])
(aset standard-display-table [?Y ?a])
(aset standard-display-table [?i ?e])
(aset standard-display-table [?i])
(aset standard-display-table [?u])
(aset standard-display-table [?d ?j])
(aset standard-display-table [?c ?h ?j])
(aset standard-display-table [?g ?j])
(aset standard-display-table ?ѕ [?s])
(aset standard-display-table [?k])
(aset standard-display-table ?і [?i])
(aset standard-display-table ?ј [?j])
(aset standard-display-table [?l ?j])
(aset standard-display-table [?n ?j])
(aset standard-display-table [?d ?z])
(aset standard-display-table [?g])
(aset standard-display-table [?Y ?e])
(aset standard-display-table [?Y ?i])
(aset standard-display-table [?U])
(aset standard-display-table [?D ?j])
(aset standard-display-table [?C ?h ?j])
(aset standard-display-table [?G ?j])
(aset standard-display-table ?Ѕ [?S])
(aset standard-display-table [?K])
(aset standard-display-table ?І [?I])
(aset standard-display-table ?Ј [?J])
(aset standard-display-table [?L ?j])
(aset standard-display-table [?N ?j])
(aset standard-display-table [?D ?j])
(aset standard-display-table [?G])
(when (equal cyrillic-language "Bulgarian")
(aset standard-display-table [?s ?h ?t])
(aset standard-display-table [?S ?h ?t])
(aset standard-display-table [?i ?u])
(aset standard-display-table [?I ?u])
(aset standard-display-table [?i ?a])
(aset standard-display-table [?I ?a]))
(when (equal cyrillic-language "Ukrainian") ; based on the official
; transliteration table
(aset standard-display-table [?y])
(aset standard-display-table [?Y])
(aset standard-display-table [?i])
(aset standard-display-table [?Y])
(aset standard-display-table [?i ?u])
(aset standard-display-table [?i ?a])
(aset standard-display-table ?г [?h])
(aset standard-display-table [?H]))))
1997-05-28 03:41:18 +00:00
;;
(provide 'cyril-util)
1997-05-28 03:41:18 +00:00
;; Local Variables:
;; coding: utf-8
;; End:
;;; cyril-util.el ends here