summaryrefslogtreecommitdiff
path: root/user/tmux/xterm-DECLRMM.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-02 01:09:37 +0000
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-02 01:09:37 +0000
commitebbeb4b293aaa49301076af526bf7ad30bac426a (patch)
tree31212c5f4ad6445470cd4a790aa37852a9cb4a72 /user/tmux/xterm-DECLRMM.patch
parentd781efa527bfc318d086667f935ebe9e96747232 (diff)
downloadpackages-ebbeb4b293aaa49301076af526bf7ad30bac426a.tar.gz
packages-ebbeb4b293aaa49301076af526bf7ad30bac426a.tar.bz2
packages-ebbeb4b293aaa49301076af526bf7ad30bac426a.tar.xz
packages-ebbeb4b293aaa49301076af526bf7ad30bac426a.zip
user/tmux: bump to 2.9a
Diffstat (limited to 'user/tmux/xterm-DECLRMM.patch')
-rw-r--r--user/tmux/xterm-DECLRMM.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/user/tmux/xterm-DECLRMM.patch b/user/tmux/xterm-DECLRMM.patch
deleted file mode 100644
index b9bef3455..000000000
--- a/user/tmux/xterm-DECLRMM.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 26f274011096b9eacfd2753d8f7afcb63e796ab9 Mon Sep 17 00:00:00 2001
-From: nicm <nicm>
-Date: Thu, 1 Aug 2019 11:45:34 +0000
-Subject: [PATCH] xterm 348 now disables margins when resized, so send DECLRMM
- again.
-
----
- tty.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/tty.c b/tty.c
-index ab1da9fd3..024aef271 100644
---- a/tty.c
-+++ b/tty.c
-@@ -1879,6 +1879,8 @@ tty_invalidate(struct tty *tty)
- tty->rlower = tty->rright = UINT_MAX;
-
- if (tty->flags & TTY_STARTED) {
-+ if (tty_use_margin(tty))
-+ tty_puts(tty, "\033[?69h"); /* DECLRMM */
- tty_putcode(tty, TTYC_SGR0);
-
- tty->mode = ALL_MODES;