mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-01-05 13:24:17 +01:00
Added ebuilds for tmux 1.5 and patched mc (baudrate problems with urxvt and ncurses)
This commit is contained in:
12
app-misc/mc/files/baudrate.patch
Normal file
12
app-misc/mc/files/baudrate.patch
Normal file
@@ -0,0 +1,12 @@
|
||||
diff -ur mc-4.7.5.3_orig/src/filemanager/midnight.c mc-4.7.5.3/src/filemanager/midnight.c
|
||||
--- mc-4.7.5.3_orig/src/filemanager/midnight.c 2011-07-26 14:55:53.000000000 +0200
|
||||
+++ mc-4.7.5.3/src/filemanager/midnight.c 2011-08-02 20:58:08.000000000 +0200
|
||||
@@ -797,7 +797,7 @@
|
||||
|
||||
tty_setup_sigwinch (sigwinch_handler);
|
||||
|
||||
- if ((tty_baudrate () < 9600) || tty_is_slow ())
|
||||
+ if ((tty_baudrate() > 0 && tty_baudrate() < 9600) || tty_is_slow())
|
||||
verbose = 0;
|
||||
|
||||
init_xterm_support ();
|
||||
Reference in New Issue
Block a user