comparison src/stable-octave-2-winbelloff.patch @ 3712:591f136e765b

stable-octave: add winbelloff patch * src/stable-octave-2-winbelloff.patch: new patch. * dist-files.mk: add stable-octave-2-winbelloff.patch.
author John Donoghue <john.donoghue@ieee.org>
date Mon, 15 Sep 2014 19:42:16 -0400
parents
children
comparison
equal deleted inserted replaced
3711:d0aee8d2e4f4 3712:591f136e765b
1 # HG changeset patch
2 # User John Donoghue <john.donoghue@ieee.org>
3 # Date 1406465631 14400
4 # Sun Jul 27 08:53:51 2014 -0400
5 # Branch gui-release
6 # Node ID b2c1093f8e4a7c5865155430184fa90bed5f0b4b
7 # Parent c6b89c4a9e63d8c65e1a6a1703138b2a6bc9c5a9
8 Disable bell in Windows (Bug #42268)
9
10 * scripts/startup/inputrc: if term=cygwin, set bell style to none
11
12 diff -r c6b89c4a9e63 -r b2c1093f8e4a scripts/startup/inputrc
13 --- a/scripts/startup/inputrc Wed Jul 23 08:52:42 2014 +0200
14 +++ b/scripts/startup/inputrc Sun Jul 27 08:53:51 2014 -0400
15 @@ -24,3 +24,8 @@
16 ## \C-q should still be available for quoted insert.
17
18 "\C-v": ""
19 +
20 +## In windows, disable audiable bell which is enabled by default
21 +$if term=cygwin
22 + set bell-style none
23 +$endif