[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#525508: marked as done (konsole corrupts the last line when it's written twice in a row.)



Your message dated Wed, 28 Apr 2010 17:54:56 +0200
with message-id <201004281754.57491.ewoerner@kde.org>
and subject line 
has caused the Debian Bug report #525508,
regarding konsole corrupts the last line when it's written twice in a row.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
525508: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525508
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: konsole
Version: 4:3.5.9.dfsg.1-6
Severity: normal

  When the last line of a konsole is updated twice in a row, once with a
shorter string and once with a longer string, both displayed
flush-right, the second string is displayed at the same starting
location as the first one and truncated to the length of the window.

  For instance, the attached program prints "0%" and then "50%" in the
lower-right hand corner of the terminal.  It works correctly in the
Linux console and in xterm, but konsole displays "50" instead of "50%".

  See #455220 for a manifestation of this in the real world.

  Daniel


-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages konsole depends on:
ii  kdelibs4c2a         4:3.5.10.dfsg.1-1+b1 core libraries and binaries for al
ii  libc6               2.9-4                GNU C Library: Shared libraries
ii  libgcc1             1:4.3.3-4            GCC support library
ii  libqt3-mt           3:3.3.8b-5+b1        Qt GUI Library (Threaded runtime v
ii  libstdc++6          4.3.3-4              The GNU Standard C++ Library v3
ii  libx11-6            2:1.1.5-2            X11 client-side library
ii  libxrender1         1:0.9.4-2            X Rendering Extension client libra

konsole recommends no packages.

Versions of packages konsole suggests:
ii  khelpcente 4:4.0.0.really.3.5.9.dfsg.1-6 help center for KDE

-- no debconf information
#include <ncurses.h>

#include <string.h>
#include <time.h>

int main(int argc, char **argv)
{
  int width;
  int height;

  const char *msg1 = "0%", *msg2 = "50%";
  int msg1len, msg2len;

  WINDOW *root;
  WINDOW *child;

  msg1len = strlen(msg1);
  msg2len = strlen(msg2);

  root = initscr();

  width = getmaxx(root);
  height = getmaxy(root);

  mvaddstr(height - 1, width - msg1len, msg1);

  refresh();

  mvaddstr(height - 1, width - msg2len, msg2);

  refresh();

  sleep(10);

  return 0;
}

--- End Message ---
--- Begin Message ---
Version: 4:4.4.2-1

No response from the submitter for 4 weeks, closing.


--- End Message ---

Reply to: