From 039f4cdaaf287060d2858c7e944b5056b6cbb824 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Mon, 26 Nov 2001 16:17:44 +0000 Subject: [PATCH] (bg-insert-moused-sexp): Use insert instead of insert-string. --- lisp/term/bg-mouse.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/term/bg-mouse.el b/lisp/term/bg-mouse.el index 0035f59acdd..78fecb4d9f2 100644 --- a/lisp/term/bg-mouse.el +++ b/lisp/term/bg-mouse.el @@ -209,12 +209,12 @@ Sexp is inserted into the buffer at point (where the text cursor is)." (looking-at "[`'\"\\]\\|\\s("))) nil) (t - (insert-string " "))) - (insert-string moused-text) + (insert " "))) + (insert moused-text) (or (eolp) (looking-at "\\s.\\|\\s)") (and (looking-at "'") (looking-at "\\sw")) ;hack for text mode - (save-excursion (insert-string " "))))) + (save-excursion (insert " "))))) ;;; Utility functions: -- 2.11.4.GIT