freebsd-ports/games/fgrun/files/patch-src-run_posix.cxx
Ganael LAPLANCHE ba8e7aed18 Update to 3.0.0
PR:		ports/189735
Submitted by:	Kuan-Chung Chiu <buganini@gmail.com>
2014-05-14 12:14:58 +00:00

11 lines
358 B
C++

--- src/run_posix.cxx.orig 2014-05-12 04:32:03.000000000 +0800
+++ src/run_posix.cxx 2014-05-12 04:32:24.000000000 +0800
@@ -60,7 +60,7 @@
#if defined(HAVE_TERMIOS_H)
struct termios term;
tcgetattr( STDOUT_FILENO, &term );
- term.c_oflag &= ~( OLCUC | ONLCR );
+ term.c_oflag &= ~ONLCR;
pid = pty_fork( &master, 0, &term, 0 );
#else