view src/stable-octave-2-winbelloff.patch @ 3721:933b99febcf1

Expand options to support 3 possible sources of octave * configure.ac: modify --enable-stable rule to --enable-octave=source (stable,alpha,default) * Makefile.am: modify OCTAVE_TARGET based on octave build value set in configure. * index.html: added master-octave information. * src/default-octave.mk: new file. * src/default-octave-1-docinstall.patch * dist-files.mk: add default-octave-1-docinstall.patch default-octave.mk * binary-dist-rules.mk: use OCTAVE_TARGET to decide on tarball/installer name
author John Donoghue <john.donoghue@ieee.org>
date Sun, 19 Oct 2014 22:58:20 -0400
parents 591f136e765b
children
line wrap: on
line source

# HG changeset patch
# User John Donoghue <john.donoghue@ieee.org>
# Date 1406465631 14400
#      Sun Jul 27 08:53:51 2014 -0400
# Branch gui-release
# Node ID b2c1093f8e4a7c5865155430184fa90bed5f0b4b
# Parent  c6b89c4a9e63d8c65e1a6a1703138b2a6bc9c5a9
Disable bell in Windows (Bug #42268)

* scripts/startup/inputrc: if term=cygwin, set bell style to none

diff -r c6b89c4a9e63 -r b2c1093f8e4a scripts/startup/inputrc
--- a/scripts/startup/inputrc	Wed Jul 23 08:52:42 2014 +0200
+++ b/scripts/startup/inputrc	Sun Jul 27 08:53:51 2014 -0400
@@ -24,3 +24,8 @@
 ## \C-q should still be available for quoted insert.
 
 "\C-v": ""
+
+## In windows, disable audiable bell which is enabled by default
+$if term=cygwin
+   set bell-style none
+$endif