• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/language/

Lines Matching +defs:table +defs:string

41 (defconst japanese-kana-table
63 "Japanese JISX0208 Kana character table.
70 (let ((l japanese-kana-table)
101 (defconst japanese-symbol-table
111 "Japanese JISX0208 symbol character table.
118 (let ((l japanese-symbol-table)
133 (defconst japanese-alpha-numeric-table
146 "Japanese JISX0208 alpha numeric character table.
152 (let ((l japanese-alpha-numeric-table)
161 ;; Convert string STR by FUNC and return a resulting string.
162 (defun japanese-string-conversion (str func &rest args)
169 (buffer-string))))
174 The argument may be a character or string. The result has the same type.
178 may be a string even if OBJ is a character if two Katakanas are
181 (japanese-string-conversion obj 'japanese-katakana-region hankaku)
188 The argument may be a character or string. The result has the same type.
191 (japanese-string-conversion obj 'japanese-hiragana-region)
198 The argument may be a character or string. The result has the same type.
202 (japanese-string-conversion obj 'japanese-hankaku-region ascii-only)
211 The argument may be a character or string. The result has the same type.
214 (japanese-string-conversion obj 'japanese-zenkaku-region)
218 (defun japanese-replace-region (from to string)
221 (insert string)
318 (defun read-hiragana-string (prompt &optional initial-input)
319 "Read a Hiragana string from the minibuffer, prompting with string PROMPT.
320 If non-nil, second arg INITIAL-INPUT is a string to insert before reading."
321 (read-multilingual-string prompt initial-input "japanese-hiragana"))