diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2014-03-03 09:13:39 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2014-03-03 09:13:39 +0000 |
commit | dc5410a94daef632be9ee84abac2d5d17acb6075 (patch) | |
tree | 4953730e7fce8ea20f4b396774f160185eee107c /sysutils/tmux/files | |
parent | Fix attribution (overwritten by previous merge) (diff) |
- Update to 1.9a
PR: 187210 (based on)
Submitted by: adamw
Notes
Notes:
svn path=/head/; revision=346869
Diffstat (limited to 'sysutils/tmux/files')
-rw-r--r-- | sysutils/tmux/files/patch-tty.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sysutils/tmux/files/patch-tty.c b/sysutils/tmux/files/patch-tty.c deleted file mode 100644 index 5567f1907c1b..000000000000 --- a/sysutils/tmux/files/patch-tty.c +++ /dev/null @@ -1,25 +0,0 @@ -$FreeBSD$ - -Apply upstream commit cbee283c26968304b473e2191d2bb5f52208b58d to prevent -OS X's Terminal.app turning on underlining when the status bar contains -bold characters. - ---- tty.c -+++ tty.c -@@ -220,7 +220,7 @@ tty_start_tty(struct tty *tty) - tty_puts(tty, "\033[?1000l\033[?1006l\033[?1005l"); - - if (tty_term_has(tty->term, TTYC_XT)) -- tty_puts(tty, "\033[c\033[>4;1m\033[?1004h"); -+ tty_puts(tty, "\033[c\033[>4;1m\033[?1004h\033[m"); - - tty->cx = UINT_MAX; - tty->cy = UINT_MAX; -@@ -283,7 +283,7 @@ tty_stop_tty(struct tty *tty) - tty_raw(tty, "\033[?1000l\033[?1006l\033[?1005l"); - - if (tty_term_has(tty->term, TTYC_XT)) -- tty_raw(tty, "\033[>4m\033[?1004l"); -+ tty_raw(tty, "\033[>4m\033[?1004l\033[m"); - - tty_raw(tty, tty_term_string(tty->term, TTYC_RMCUP)); |