diff options
| author | Wojciech Gac | 2019-03-15 02:01:48 +0100 |
|---|---|---|
| committer | Eli Zaretskii | 2019-03-15 09:58:29 +0200 |
| commit | 4baacfe1b43f7ce34c007490475632bd73b88662 (patch) | |
| tree | 1a29863fc9062375e6cd986db9ff3ab8802df328 /lisp | |
| parent | f5a795d6ec73a0642f7eb95e2a9827e514824c14 (diff) | |
| download | emacs-4baacfe1b43f7ce34c007490475632bd73b88662.tar.gz emacs-4baacfe1b43f7ce34c007490475632bd73b88662.zip | |
Add notice and fix missing character
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/leim/quail/sami.el | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lisp/leim/quail/sami.el b/lisp/leim/quail/sami.el index 4b45e894da5..d4cf4ec96e8 100644 --- a/lisp/leim/quail/sami.el +++ b/lisp/leim/quail/sami.el | |||
| @@ -1,6 +1,39 @@ | |||
| 1 | ;;; sami.el --- Quail package for inputting Sámi -*-coding: utf-8;-*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 1998, 2001-2019 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; Author: Wojciech S. Gac <wojciech.s.gac@gmail.com> | ||
| 6 | ;; Maintainer: Wojciech S. Gac <wojciech.s.gac@gmail.com>> | ||
| 7 | ;; Keywords: i18n, multilingual, input method, Sámi | ||
| 8 | |||
| 9 | ;; This file is part of GNU Emacs. | ||
| 10 | |||
| 11 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 12 | ;; it under the terms of the GNU General Public License as published by | ||
| 13 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 14 | ;; (at your option) any later version. | ||
| 15 | |||
| 16 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 17 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 18 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 19 | ;; GNU General Public License for more details. | ||
| 20 | |||
| 21 | ;; You should have received a copy of the GNU General Public License | ||
| 22 | ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. | ||
| 1 | 23 | ||
| 2 | ;;; Commentary: | 24 | ;;; Commentary: |
| 3 | 25 | ||
| 26 | ;; This file implements the following input methods for the Sámi | ||
| 27 | ;; language | ||
| 28 | ;; - norwegian-sami-prefix | ||
| 29 | ;; - bergsland-hasselbrink-sami-prefix | ||
| 30 | ;; - southern-sami-prefix | ||
| 31 | ;; - ume-sami-prefix | ||
| 32 | ;; - northern-sami-prefix | ||
| 33 | ;; - inari-sami-prefix | ||
| 34 | ;; - skolt-sami-prefix | ||
| 35 | ;; - kildin-sami-prefix | ||
| 36 | |||
| 4 | ;;; Code | 37 | ;;; Code |
| 5 | 38 | ||
| 6 | (require 'quail) | 39 | (require 'quail) |
| @@ -644,6 +677,7 @@ Alphabet (parenthesized letters are used in foreign names only): | |||
| 644 | ("b" ?б) | 677 | ("b" ?б) |
| 645 | ("n" ?н) | 678 | ("n" ?н) |
| 646 | ("'n" ?ӊ) | 679 | ("'n" ?ӊ) |
| 680 | (",n" ?ӈ) | ||
| 647 | ("m" ?м) | 681 | ("m" ?м) |
| 648 | ("'m" ?ӎ) | 682 | ("'m" ?ӎ) |
| 649 | ("," ?,) | 683 | ("," ?,) |
| @@ -711,8 +745,11 @@ Alphabet (parenthesized letters are used in foreign names only): | |||
| 711 | ("B" ?Б) | 745 | ("B" ?Б) |
| 712 | ("N" ?Н) | 746 | ("N" ?Н) |
| 713 | ("'N" ?Ӊ) | 747 | ("'N" ?Ӊ) |
| 748 | (",N" ?Ӈ) | ||
| 714 | ("M" ?М) | 749 | ("M" ?М) |
| 715 | ("'M" ?Ӎ) | 750 | ("'M" ?Ӎ) |
| 716 | ("<" ?<) | 751 | ("<" ?<) |
| 717 | (">" ?>) | 752 | (">" ?>) |
| 718 | ("?" ??)) | 753 | ("?" ??)) |
| 754 | |||
| 755 | ;;; sami.el ends here | ||