changeset 4153:908a2a0cf6d6

octave.vbs: set GNUTERM env variable (Bug #47994) * installer-files/octave.bat: set GNUTERM=windows * installer-files/octave.vbs: set GNUTERM=windows
author John Donoghue
date Wed, 01 Jun 2016 07:58:16 -0400
parents 2c8182e063cc
children 84a6afd1c632
files installer-files/octave.bat installer-files/octave.vbs
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/installer-files/octave.bat	Fri May 27 11:46:52 2016 -0400
+++ b/installer-files/octave.bat	Wed Jun 01 07:58:16 2016 -0400
@@ -14,6 +14,7 @@
 Rem   Set up any environment vars we may need
 
 set TERM=cygwin
+set GNUTERM=windows
 
 Rem   Check for args to see if we are told to start GUI
 Rem   with the --force-gui option or not (--no-gui)
--- a/installer-files/octave.vbs	Fri May 27 11:46:52 2016 -0400
+++ b/installer-files/octave.vbs	Wed Jun 01 07:58:16 2016 -0400
@@ -13,6 +13,7 @@
 
 ' set terminal type
 wshSystemEnv("TERM") = "cygwin"
+wshSystemEnv("GNUTERM") = "windows"
 
 ' set Qt plugin directory
 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\plugins"