diff options
| author | Kenichi Handa <handa@m17n.org> | 1999-02-17 12:39:48 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 1999-02-17 12:39:48 +0000 |
| commit | a1e24774280e6b8b516b2e7d0c69a7473d4420cc (patch) | |
| tree | 64f6019e06202d60d9a8cbe21c2d2f241e6d954a | |
| parent | 9aa84f7f92800ac19c0393eaec5f7841323bd853 (diff) | |
| download | emacs-a1e24774280e6b8b516b2e7d0c69a7473d4420cc.tar.gz | |
(decompose-region): Use
insert-buffer-substring instead of insert-buffer to avoid putting
mark.
| -rw-r--r-- | lisp/international/mule-util.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index ae13446ca6b..1c71791e8eb 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el @@ -344,7 +344,7 @@ positions (integers or markers) specifying the region." (set-buffer buf) (goto-char start) (delete-region start end) - (insert-buffer tempbuf)))))) + (insert-buffer-substring tempbuf)))))) ;;;###autoload (defun decompose-string (string) |
