summaryrefslogtreecommitdiff
path: root/lisp/term.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-03-08 19:37:00 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-03-08 19:37:00 +0000
commit212bb1a81ade52dcbcbb1bceb680e3e0e0b6264c (patch)
treeafb1da3f1308523a5a4be2ac1db2d52127c2fae3 /lisp/term.el
parentb2553838e4572d3f7c1e54f9d70c69f20240208e (diff)
downloademacs-212bb1a81ade52dcbcbb1bceb680e3e0e0b6264c.tar.gz
(term-send-raw-meta): Deactivate the mark first (Bug#2449).
Diffstat (limited to 'lisp/term.el')
-rw-r--r--lisp/term.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 3d21d8b6fc0..3fda9bee646 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -1191,6 +1191,7 @@ without any interpretation."
(defun term-send-raw-meta ()
(interactive)
+ (deactivate-mark)
(let ((char last-input-event))
(when (symbolp last-input-event)
;; Convert `return' to C-m, etc.