diff options
author | Rusmir Dusko <nemysis@FreeBSD.org> | 2013-12-07 10:27:08 +0000 |
---|---|---|
committer | Rusmir Dusko <nemysis@FreeBSD.org> | 2013-12-07 10:27:08 +0000 |
commit | a88615c3853b88cd475dbe31860818a8fa4eba67 (patch) | |
tree | 4f9afb4ca4fabb50f96914bc6fcf5f118e45558a /misc/mc/files/patch-lib__tty__win.c | |
parent | Update to Wine 1.7.8. This includes the following changes: (diff) |
- Fix build with Option NCURSES, add patches
Reported by: "Herbert J. Skuhra" <hskuhra@eumx.net>
Approved by: pawel / wg (mentors, implicit)
Notes
Notes:
svn path=/head/; revision=335823
Diffstat (limited to 'misc/mc/files/patch-lib__tty__win.c')
-rw-r--r-- | misc/mc/files/patch-lib__tty__win.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/misc/mc/files/patch-lib__tty__win.c b/misc/mc/files/patch-lib__tty__win.c new file mode 100644 index 000000000000..cf51d91365af --- /dev/null +++ b/misc/mc/files/patch-lib__tty__win.c @@ -0,0 +1,20 @@ +--- ./lib/tty/win.c.orig 2013-09-02 19:13:32.000000000 +0200 ++++ ./lib/tty/win.c 2013-12-07 10:33:20.000000000 +0100 +@@ -96,7 +96,7 @@ + void + do_enter_ca_mode (void) + { +- if (mc_global.tty.xterm_flag && smcup != NULL) ++ if (mc_global.tty.xterm_flag) + { + fprintf (stdout, /* ESC_STR ")0" */ ESC_STR "7" ESC_STR "[?47h"); + fflush (stdout); +@@ -108,7 +108,7 @@ + void + do_exit_ca_mode (void) + { +- if (mc_global.tty.xterm_flag && rmcup != NULL) ++ if (mc_global.tty.xterm_flag) + { + fprintf (stdout, ESC_STR "[?47l" ESC_STR "8" ESC_STR "[m"); + fflush (stdout); |