diff options
| author | Kenichi Handa | 2003-11-10 07:20:38 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-11-10 07:20:38 +0000 |
| commit | d63b2da83c08640096866ac592177d88b259c262 (patch) | |
| tree | 333c2a910e5d4fe06a1edecbea4e814aba45cb4e | |
| parent | 75fe15b0acd7b1dd916feebd21bc8d3c7e0ef0b8 (diff) | |
| download | emacs-d63b2da83c08640096866ac592177d88b259c262.tar.gz emacs-d63b2da83c08640096866ac592177d88b259c262.zip | |
(kannada-compose-region) (kannada-compose-string,
kannada-post-read-conversion): Add autoload cookie.
| -rw-r--r-- | lisp/language/knd-util.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/language/knd-util.el b/lisp/language/knd-util.el index c856808bd77..51d2fa4f4d9 100644 --- a/lisp/language/knd-util.el +++ b/lisp/language/knd-util.el | |||
| @@ -61,6 +61,7 @@ | |||
| 61 | "\\)") | 61 | "\\)") |
| 62 | "Regexp matching a composable sequence of Kannada characters.") | 62 | "Regexp matching a composable sequence of Kannada characters.") |
| 63 | 63 | ||
| 64 | ;;;###autoload | ||
| 64 | (defun kannada-compose-region (from to) | 65 | (defun kannada-compose-region (from to) |
| 65 | (interactive "r") | 66 | (interactive "r") |
| 66 | (save-excursion | 67 | (save-excursion |
| @@ -70,12 +71,14 @@ | |||
| 70 | (while (re-search-forward kannada-composable-pattern nil t) | 71 | (while (re-search-forward kannada-composable-pattern nil t) |
| 71 | (kannada-compose-syllable-region (match-beginning 0) | 72 | (kannada-compose-syllable-region (match-beginning 0) |
| 72 | (match-end 0)))))) | 73 | (match-end 0)))))) |
| 74 | ;;;###autoload | ||
| 73 | (defun kannada-compose-string (string) | 75 | (defun kannada-compose-string (string) |
| 74 | (with-temp-buffer | 76 | (with-temp-buffer |
| 75 | (insert (decompose-string string)) | 77 | (insert (decompose-string string)) |
| 76 | (kannada-compose-region (point-min) (point-max)) | 78 | (kannada-compose-region (point-min) (point-max)) |
| 77 | (buffer-string))) | 79 | (buffer-string))) |
| 78 | 80 | ||
| 81 | ;;;###autoload | ||
| 79 | (defun kannada-post-read-conversion (len) | 82 | (defun kannada-post-read-conversion (len) |
| 80 | (save-excursion | 83 | (save-excursion |
| 81 | (save-restriction | 84 | (save-restriction |