Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoolkit r571 - trunk/src/echangelog
Date: Fri, 01 May 2009 19:11:29
Message-Id: E1Lzy8u-0003s5-5h@stork.gentoo.org
1 Author: idl0r
2 Date: 2009-05-01 19:11:27 +0000 (Fri, 01 May 2009)
3 New Revision: 571
4
5 Modified:
6 trunk/src/echangelog/echangelog
7 Log:
8 Fixed stty call.
9
10 Modified: trunk/src/echangelog/echangelog
11 ===================================================================
12 --- trunk/src/echangelog/echangelog 2009-05-01 19:03:07 UTC (rev 570)
13 +++ trunk/src/echangelog/echangelog 2009-05-01 19:11:27 UTC (rev 571)
14 @@ -477,7 +477,7 @@
15 if ($? != 0) {
16 # This usually happens when the editor got forcefully killed; and
17 # the terminal is probably messed up: so we reset things.
18 - system('/usr/bin/stty sane');
19 + system('stty sane');
20 print STDERR "Editor died! Reverting to stdin method.\n";
21 undef $editor;
22 } else {