From 1cc8a3f41a169505f9078ccc4d53dfc87bf598cb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 15 May 1993 20:32:23 +0000 Subject: [PATCH] (mouse-set-region): Call set-mark to activate mark. --- lisp/mouse.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/mouse.el b/lisp/mouse.el index 779d4fa5b67..5f032754c00 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -111,6 +111,7 @@ This must be bound to a mouse drag event." (eq (framep (selected-frame)) 'x)) (sit-for 1)) (push-mark) + (set-mark (point)) (if (numberp (posn-point end)) (goto-char (posn-point end)))))