[Konsole-devel] [Bug 133511] Garbage characters occasionally appear in Konsole

esigra at gmail.com esigra at gmail.com
Fri Jan 2 17:11:30 UTC 2009


http://bugs.kde.org/show_bug.cgi?id=133511





--- Comment #13 from esigra gmail com  2009-01-02 18:11:30 ---
Here follows a much smaller program (no data file needed). It shows several
garbage characters at different places in Konsole, while a virtual terminal
shows a single '?' at (7, 7), where the character should be. Maybe a program is
not allowed to print character number 197, but I think that the virtual
terminal handles the error better than Konsole.
#include <curses.h>
int main() {
  initscr ();
  curs_set (0);
  mvaddch (7, 7, 197 | A_REVERSE);
  refresh (); 
  getchar ();
  endwin ();
  return 0;
}


-- 
Configure bugmail: http://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the konsole-devel mailing list