diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-03-08 19:37:00 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-03-08 19:37:00 +0000 |
commit | 212bb1a81ade52dcbcbb1bceb680e3e0e0b6264c (patch) | |
tree | afb1da3f1308523a5a4be2ac1db2d52127c2fae3 /lisp/term.el | |
parent | b2553838e4572d3f7c1e54f9d70c69f20240208e (diff) | |
download | emacs-212bb1a81ade52dcbcbb1bceb680e3e0e0b6264c.tar.gz |
(term-send-raw-meta): Deactivate the mark first (Bug#2449).
Diffstat (limited to 'lisp/term.el')
-rw-r--r-- | lisp/term.el | 1 |
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. |