summaryrefslogtreecommitdiff
path: root/lisp/term.el
diff options
context:
space:
mode:
authorDaniel Colascione <dancol@dancol.org>2016-11-02 21:17:48 -0700
committerDaniel Colascione <dancol@dancol.org>2016-11-02 21:17:48 -0700
commite5cdb5ce7d4ad96b7cd5ca7888e34076b9267eee (patch)
treed67fb10dc83633fec6b0ebb0e5214c5d7042ff7d /lisp/term.el
parent722e7989fa2efa53a4a4e14e3f358a5b56f3eddd (diff)
downloademacs-e5cdb5ce7d4ad96b7cd5ca7888e34076b9267eee.tar.gz
Revert "Disable bracketed paste in a terminal in char mode"
This change causes regressions, and besides, disabling BPM frame-wide for the sake of one buffer is the wrong solution. This reverts commit cf566b46a6cf85c6d54d0b0db80e32ed6ae8d1ca.
Diffstat (limited to 'lisp/term.el')
-rw-r--r--lisp/term.el7
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 5177ab4b921..c067254f414 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -1247,11 +1247,6 @@ intervention from Emacs, except for the escape character (usually C-c)."
(end-of-line)
(term-send-input))
(setq term-input-sender save-input-sender))))
-
- ;; Turn off XTerm bracketed paste (Bug#24639).
- (when (fboundp 'xterm-inhibit-bracketed-paste-mode)
- (xterm-inhibit-bracketed-paste-mode))
-
(term-update-mode-line)))
(defun term-line-mode ()
@@ -1261,8 +1256,6 @@ you type \\[term-send-input] which sends the current line to the inferior."
(interactive)
(when (term-in-char-mode)
(use-local-map term-old-mode-map)
- (when (fboundp 'xterm-inhibit-bracketed-paste-mode)
- (xterm-inhibit-bracketed-paste-mode 0))
(term-update-mode-line)))
(defun term-update-mode-line ()