changeset 22688:9a0265ead11c stable

maint: Merge away extra head on default branch.
author John W. Eaton <jwe@octave.org>
date Thu, 27 Oct 2016 22:02:40 -0400
parents ce0f54b63923 (current diff) 96817eafc799 (diff)
children a3e4c8fb69cb d7c1263ea850
files
diffstat 2 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Thu Oct 27 17:57:59 2016 -0700
+++ b/configure.ac	Thu Oct 27 22:02:40 2016 -0400
@@ -19,21 +19,21 @@
 ### <http://www.gnu.org/licenses/>.
 
 AC_PREREQ([2.63])
-AC_INIT([GNU Octave], [4.2.0-rc2], [http://octave.org/bugs.html], [octave])
+AC_INIT([GNU Octave], [4.2.0-rc3], [http://octave.org/bugs.html], [octave])
 
 dnl Note that the version number is duplicated here and in AC_INIT
 dnl because AC_INIT requires it to be static, not computed from
 dnl shell variables.
 OCTAVE_MAJOR_VERSION=4
 OCTAVE_MINOR_VERSION=2
-OCTAVE_PATCH_VERSION=0-rc2
+OCTAVE_PATCH_VERSION=0-rc3
 
 dnl PACKAGE_VERSION is set by the AC_INIT VERSION arg
 OCTAVE_VERSION="$PACKAGE_VERSION"
 
 OCTAVE_COPYRIGHT="Copyright (C) 2016 John W. Eaton and others."
 
-OCTAVE_RELEASE_DATE="2016-09-20"
+OCTAVE_RELEASE_DATE="2016-10-27"
 
 ## The "API version" is used as a way of checking that interfaces in the
 ## liboctave and libinterp libraries haven't changed in a backwardly
--- a/libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp	Thu Oct 27 17:57:59 2016 -0700
+++ b/libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp	Thu Oct 27 22:02:40 2016 -0400
@@ -383,6 +383,9 @@
   l->addWidget (m_horizontalScrollBar, 1, 0);
   l->addWidget (m_verticalScrollBar, 0, 1);
 
+  SetConsoleCP (65001);
+  SetConsoleOutputCP (65001);
+
   // Choose 15 (0xF) as index into the Windows console color map for the
   // background and 0 (0x0) as the index for the foreground.  This
   // selection corresponds to the indices used in the foregroundColor,