Function: japanese-hiragana
japanese-hiragana is an autoloaded and byte-compiled function defined
in japan-util.el.gz.
Signature
(japanese-hiragana OBJ)
Documentation
Convert argument to Hiragana and return that.
The argument may be a character or string. The result has the same type. The argument object is not altered--the value is a copy.
Source Code
;; Defined in /usr/src/emacs/lisp/language/japan-util.el.gz
;;;###autoload
(defun japanese-hiragana (obj)
"Convert argument to Hiragana and return that.
The argument may be a character or string. The result has the same type.
The argument object is not altered--the value is a copy."
(if (stringp obj)
(japanese-string-conversion obj 'japanese-hiragana-region)
(or (get-char-code-property obj 'hiragana)
obj)))