Function: japanese-zenkaku
japanese-zenkaku is an autoloaded and byte-compiled function defined
in japan-util.el.gz.
Signature
(japanese-zenkaku OBJ)
Documentation
Convert argument to zenkaku 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-zenkaku (obj)
"Convert argument to `zenkaku' 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-zenkaku-region)
(or (get-char-code-property obj 'jisx0208)
obj)))