diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 16:18:14 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 16:18:14 +0000 |
commit | b9001ed392f7d757783b86b8f3339412963259a4 (patch) | |
tree | ae2be29ab1f4a95c506b1ea2aad5293fde9b05e4 /lisp/term/sun-mouse.el | |
parent | 039f4cdaaf287060d2858c7e944b5056b6cbb824 (diff) | |
download | emacs-b9001ed392f7d757783b86b8f3339412963259a4.tar.gz |
(sun-yank-selection): Use insert instead of insert-string.
Diffstat (limited to 'lisp/term/sun-mouse.el')
-rw-r--r-- | lisp/term/sun-mouse.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/sun-mouse.el b/lisp/term/sun-mouse.el index c5b70b24853..91c63fdb066 100644 --- a/lisp/term/sun-mouse.el +++ b/lisp/term/sun-mouse.el @@ -647,7 +647,7 @@ CODE values: 13 = Tool-Position, 14 = Size-in-Pixels, 18 = Size-in-Chars." Insert contents into the current buffer at point." (interactive "*") (set-mark-command nil) - (insert-string (sun-get-selection))) + (insert (sun-get-selection))) (defun sun-select-region (beg end) "Set the sunwindows selection to the region in the current buffer." |