changeset 29078:90a8e6fd85c3 stable

qterminal: Disable "undecodable token" messages (bug #59483) * Vt102Emulation.cpp (Vt102Emulation::ReportErrorToken): Disable display of warning message.
author John W. Eaton <jwe@octave.org>
date Thu, 19 Nov 2020 18:58:07 -0500
parents dc3ee9616267
children c43e748de388 dfec7af844fd
files libgui/qterminal/libqterminal/unix/Vt102Emulation.cpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/qterminal/libqterminal/unix/Vt102Emulation.cpp	Thu Nov 19 13:05:51 2020 -0800
+++ b/libgui/qterminal/libqterminal/unix/Vt102Emulation.cpp	Thu Nov 19 18:58:07 2020 -0500
@@ -1263,7 +1263,7 @@
 
 void Vt102Emulation::ReportErrorToken()
 {
-#ifndef NDEBUG
-  printf("undecodable "); scan_buffer_report();
-#endif
+  // #ifndef NDEBUG
+  //   printf("undecodable "); scan_buffer_report();
+  // #endif
 }