Function: japanese-replace-region

japanese-replace-region is a byte-compiled function defined in japan-util.el.gz.

Signature

(japanese-replace-region FROM TO STRING)

Documentation

Replace the region specified by FROM and TO to STRING.

Source Code

;; Defined in /usr/src/emacs/lisp/language/japan-util.el.gz
(defun japanese-replace-region (from to string)
  "Replace the region specified by FROM and TO to STRING."
  (goto-char to)
  (replace-region-contents from to
                           (if (stringp string)
                               string
                             (string string))
                           0))