Bug#568608: Please reopen. Fixed upstream, but not in Debian.

2010-10-22 Thread gi1242+debianbugs
Ok -- this problem has been fixed upstream. It's an issue with
xserver-xorg-input-wacom. It's fixed in 0.10.8, for which no Debian
package exists yet.

The bug is present in 0.10.5+20100416-1 which is the latest version
available with Debian.

GI

-- 
'Common' Proof Techniques:
23. Proof by vehement assertion -- It is useful to have some kind of
authority relation to the audience.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101023061729.gb13...@andrew.cmu.edu



Bug#600977: marked as done (in debian squeeze xephyr keybindings are totally broken)

2010-10-22 Thread Debian Bug Tracking System
Your message dated Sat, 23 Oct 2010 12:16:08 +1100
with message-id 
and subject line Re: Bug#600977: Acknowledgement (in debian squeeze xephyr 
keybindings are totally broken)
has caused the Debian Bug report #600977,
regarding in debian squeeze xephyr keybindings are totally broken
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 ow...@bugs.debian.org
immediately.)


-- 
600977: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600977
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xephyr
Severity: normal

IMHO not being able to have proper keybindings make xephyr useless.
There is already a bug about this which hasnt' moved in a while and a patch is 
already available (it just need to be broken up apparently).
I am happy to build, test etc. any patches but *lets* get this fixed.

-- System Information:
Debian Release: 5.0.6
  APT prefers stable
  APT policy: (900, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.36 (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
Wrong package :/

--- End Message ---


Re: xterm-265

2010-10-22 Thread Thomas Dickey
On Fri, Oct 22, 2010 at 11:33:46PM +0200, Cyril Brulebois wrote:
> Thomas Dickey  (22/10/2010):
> > Patch #265 - 2010/10/22
> > 
> >  * fix  a regression in fontname logic from patch #263 changes (Debian
> >#600707, reported by Vincent Lefevre).
> >  * revert  modification  of  any-event/any-button  protocol from patch
> >#263  changes.  It  interferes with selection using a shifted mouse
> >button (reports by Neil Bird, Bram Moolenaar).
> 
> Hi,
> 
> I now get that at startup (from within a full X session):

Here's a patch which fixes the issues I was able to find with valgrind
after reproducing your report.

-- 
Thomas E. Dickey 
http://invisible-island.net
ftp://invisible-island.net
# ftp://invisible-island.net/xterm/patches/temp/xterm-265a.patch.gz
# patch by Thomas E. Dickey 
# created  Sat Oct 23 01:08:22 UTC 2010
# --
# MANIFEST   |2 +-
# charproc.c |   10 +-
# fontutils.c|   16 
# version.h  |4 ++--
# xterm.log.html |8 +++-
# 5 files changed, 23 insertions(+), 17 deletions(-)
# --
Index: MANIFEST
--- xterm-265+/MANIFEST	2010-10-22 01:04:23.0 +
+++ xterm-265a/MANIFEST	2010-10-22 20:48:25.0 +
@@ -1,4 +1,4 @@
-MANIFEST for xterm-265, version xterm-265
+MANIFEST for xterm-266, version xterm-266
 
 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
Index: charproc.c
--- xterm-265+/charproc.c	2010-10-13 23:04:01.0 +
+++ xterm-265a/charproc.c	2010-10-22 23:04:58.0 +
@@ -1,4 +1,4 @@
-/* $XTermId: charproc.c,v 1.1086 2010/10/13 23:04:01 tom Exp $ */
+/* $XTermId: charproc.c,v 1.1087 2010/10/22 23:04:58 tom Exp $ */
 
 /*
 
@@ -6383,13 +6383,13 @@
 #define DefaultFontNames TScreenOf(wnew)->menu_font_names[fontMenu_default]
 init_Sres(misc.default_font.f_n);
 init_Sres(misc.default_font.f_b);
-DefaultFontNames[fNorm] = wnew->misc.default_font.f_n;
-DefaultFontNames[fBold] = wnew->misc.default_font.f_b;
+DefaultFontNames[fNorm] = x_strdup(wnew->misc.default_font.f_n);
+DefaultFontNames[fBold] = x_strdup(wnew->misc.default_font.f_b);
 #if OPT_WIDE_CHARS
 init_Sres(misc.default_font.f_w);
 init_Sres(misc.default_font.f_wb);
-DefaultFontNames[fWide] = wnew->misc.default_font.f_w;
-DefaultFontNames[fWBold] = wnew->misc.default_font.f_wb;
+DefaultFontNames[fWide] = x_strdup(wnew->misc.default_font.f_w);
+DefaultFontNames[fWBold] = x_strdup(wnew->misc.default_font.f_wb);
 #endif
 TScreenOf(wnew)->MenuFontName(fontMenu_fontescape) = NULL;
 TScreenOf(wnew)->MenuFontName(fontMenu_fontsel) = NULL;
Index: fontutils.c
--- xterm-265+/fontutils.c	2010-10-22 09:02:10.0 +
+++ xterm-265a/fontutils.c	2010-10-23 00:27:22.0 +
@@ -1,4 +1,4 @@
-/* $XTermId: fontutils.c,v 1.351 2010/10/22 09:02:10 tom Exp $ */
+/* $XTermId: fontutils.c,v 1.353 2010/10/23 00:27:22 tom Exp $ */
 
 /
 
@@ -911,7 +911,7 @@
 TRACE(("xtermLoadFont #%d "name" %s%s\n", \
 	   fontnum, \
 	   (warn[index] == fwResource) ? "*" : " ", \
-	   NonNull(myfonts.field)));
+	   NonNull(myfonts.field)))
 DbgResource("normal", f_n, fNorm);
 DbgResource("bold  ", f_b, fBold);
 #if OPT_WIDE_CHARS
@@ -1249,7 +1249,7 @@
 	TRACE(("COPY_MENU_FONTS " #src " to " #dst "\n")); \
 	for (n = fontMenu_default; n <= fontMenu_lastBuiltin; ++n) { \
 	for (m = 0; m < fMAX; ++m) { \
-		dst.menu_font_names[n][m] = src.menu_font_names[n][m]; \
+		dst.menu_font_names[n][m] = x_strdup(src.menu_font_names[n][m]); \
 	} \
 	}
 
@@ -1329,11 +1329,11 @@
 	 */
 	xw->misc.default_font = subresourceRec.default_font;
 	COPY_MENU_FONTS(subresourceRec, xw->screen);
-	screen->MenuFontName(fontMenu_default) = xw->misc.default_font.f_n;
-	screen->menu_font_names[0][fBold] = xw->misc.default_font.f_b;
+	screen->MenuFontName(fontMenu_default) = x_strdup(xw->misc.default_font.f_n);
+	screen->menu_font_names[0][fBold] = x_strdup(xw->misc.default_font.f_b);
 #if OPT_WIDE_CHARS
-	screen->menu_font_names[0][fWide] = xw->misc.default_font.f_w;
-	screen->menu_font_names[0][fWBold] = xw->misc.default_font.f_wb;
+	screen->menu_font_names[0][fWide] = x_strdup(xw->misc.default_font.f_w);
+	screen->menu_font_names[0][fWBold] = x_strdup(xw->misc.default_font.f_wb);
 #endif
 	} else {
 	TRACE(("...no resources found\n"));
@@ -3019,7 +3019,7 @@
 
 #define USE_CACHED(field, name) \
 	if (myfonts.field == 0) { \
-		myfonts.field = screen->menu_font_names[which][name]; \
+		myfonts.field = x_strdup(screen->menu_font_names[which][name]); \
 		TRACE(("set myfo

Bug#600829: one display goes out-of-range in dual-monitor setup

2010-10-22 Thread Eric Cooper
Package: xserver-xorg-video-nouveau
Severity: normal

I'm now seeing the same behavior after switching to the proprietary nvidia
driver, so I don't think I can blame it on nouveau :-).  Feel free to
close this.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/2010102452.15289.23731.report...@stratocaster.home



Re: xterm-265

2010-10-22 Thread Cyril Brulebois
Thomas Dickey  (22/10/2010):
> Patch #265 - 2010/10/22
> 
>  * fix  a regression in fontname logic from patch #263 changes (Debian
>#600707, reported by Vincent Lefevre).
>  * revert  modification  of  any-event/any-button  protocol from patch
>#263  changes.  It  interferes with selection using a shifted mouse
>button (reports by Neil Bird, Bram Moolenaar).

Hi,

I now get that at startup (from within a full X session):
| k...@bowmore:~$ xterm
| xterm: cannot load font '-75-C-120-ISO10646-1'

Not seen in 261 or 264. I don't think I've much ~/.X* configuration
files, just .Xresources:
| emacs.font: 6x10
| emacs22.font: 6x10
| emacs23.font: 6x10
| gvim.font: 6x10
| xfce4-terminal: 6x10

Starting from a terminal with just that:
| X :4 &
| DISPLAY=:4 xterm

I get this:
| *** glibc detected *** xterm: munmap_chunk(): invalid pointer

Running under valgrind, xterm doesn't crash anymore, but many invalid
reads are mentioned (see attached file). Maybe a double free or
uninitialized memory?

Mraw,
KiBi.
==17515== Memcheck, a memory error detector
==17515== Copyright (C) 2002-2010, and GNU GPL'd, by Julian Seward et al.
==17515== Using Valgrind-3.6.0.SVN-Debian and LibVEX; rerun with -h for 
copyright info
==17515== Command: xterm
==17515== Parent PID: 14872
==17515== 
==17515== Invalid read of size 1
==17515==at 0x4249B1: same_font_name (fontutils.c:545)
==17515==by 0x425362: xtermLoadFont (fontutils.c:894)
==17515==by 0x42A003: SetVTFont (fontutils.c:3044)
==17515==by 0x41D7E1: VTRealize (charproc.c:7042)
==17515==by 0x5FF14E5: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF1635: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF192F: XtRealizeWidget (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x41A8B4: VTInit (charproc.c:5640)
==17515==by 0x42FC48: spawnXTerm (main.c:3267)
==17515==by 0x42EF2C: main (main.c:2288)
==17515==  Address 0x7ff74b0 is 0 bytes inside a block of size 1 free'd
==17515==at 0x4C240FD: free (vg_replace_malloc.c:366)
==17515==by 0x424D99: cache_menu_font_name (fontutils.c:723)
==17515==by 0x42560D: xtermLoadFont (fontutils.c:943)
==17515==by 0x41D6A4: VTRealize (charproc.c:7015)
==17515==by 0x5FF14E5: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF1635: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF192F: XtRealizeWidget (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x41A8B4: VTInit (charproc.c:5640)
==17515==by 0x42FC48: spawnXTerm (main.c:3267)
==17515==by 0x42EF2C: main (main.c:2288)
==17515== 
==17515== Invalid read of size 1
==17515==at 0x4249CB: same_font_name (fontutils.c:564)
==17515==by 0x425362: xtermLoadFont (fontutils.c:894)
==17515==by 0x42A003: SetVTFont (fontutils.c:3044)
==17515==by 0x41D7E1: VTRealize (charproc.c:7042)
==17515==by 0x5FF14E5: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF1635: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF192F: XtRealizeWidget (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x41A8B4: VTInit (charproc.c:5640)
==17515==by 0x42FC48: spawnXTerm (main.c:3267)
==17515==by 0x42EF2C: main (main.c:2288)
==17515==  Address 0x7ff74b0 is 0 bytes inside a block of size 1 free'd
==17515==at 0x4C240FD: free (vg_replace_malloc.c:366)
==17515==by 0x424D99: cache_menu_font_name (fontutils.c:723)
==17515==by 0x42560D: xtermLoadFont (fontutils.c:943)
==17515==by 0x41D6A4: VTRealize (charproc.c:7015)
==17515==by 0x5FF14E5: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF1635: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF192F: XtRealizeWidget (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x41A8B4: VTInit (charproc.c:5640)
==17515==by 0x42FC48: spawnXTerm (main.c:3267)
==17515==by 0x42EF2C: main (main.c:2288)
==17515== 
==17515== Invalid read of size 1
==17515==at 0x4249D2: same_font_name (fontutils.c:564)
==17515==by 0x425362: xtermLoadFont (fontutils.c:894)
==17515==by 0x42A003: SetVTFont (fontutils.c:3044)
==17515==by 0x41D7E1: VTRealize (charproc.c:7042)
==17515==by 0x5FF14E5: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF1635: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF192F: XtRealizeWidget (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x41A8B4: VTInit (charproc.c:5640)
==17515==by 0x42FC48: spawnXTerm (main.c:3267)
==17515==by 0x42EF2C: main (main.c:2288)
==17515==  Address 0x7ff74b0 is 0 bytes inside a block of size 1 free'd
==17515==at 0x4C240FD: free (vg_replace_malloc.c:366)
==17515==by 0x424D99: cache_menu_font_name (fontutils.c:723)
==17515==by 0x42560D: xtermLoadFont (fontutils.c:943)
==17515==by 0x41D6A4: VTRealize (charproc.c:7015)
==17515==by 0x5FF14E5: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF1635: ??? (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x5FF192F: XtRealizeWidget (in /usr/lib/libXt.so.6.0.0)
==17515==by 0x41A8B4: VTInit (charproc.c:5640)

Processed: severity of 536612 is normal

2010-10-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 536612 normal
Bug #536612 [xterm] firefox/emacs style scrollbars
Severity set to 'normal' from 'wishlist'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
536612: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=536612
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.128775700612583.transcr...@bugs.debian.org



Bug#600490: is there any chance this is backported to squeeze?

2010-10-22 Thread Samuel Thibault
squeeze is not released yet, so it's not even a backport, it'll just
follow the usual fix migration during the freeze.

Samuel



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101022132116.gx5...@const.bordeaux.inria.fr



Bug#600490: is there any chance this is backported to squeeze?

2010-10-22 Thread Dima Pasechnik
I have a laptop with 106-key japanse keyboard, and since an upgrade to
squeeze from lenny
I cannot get normal functioning of it any more (forget about using a
russian phonetic layout, for instance)
Symptoms are similar to descibed here...

Thanks, and sorry if this is totally ignorant of me...

-- 
Dmitrii Pasechnik
http://www.ntu.edu.sg/home/dima/



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktim8bjvtsozdggx5r53awtocadppv52mwnkq9...@mail.gmail.com



xterm-265

2010-10-22 Thread Thomas Dickey
Patch #265 - 2010/10/22

 * fix  a regression in fontname logic from patch #263 changes (Debian
   #600707, reported by Vincent Lefevre).
 * revert  modification  of  any-event/any-button  protocol from patch
   #263  changes.  It  interferes with selection using a shifted mouse
   button (reports by Neil Bird, Bram Moolenaar).


-- 
Thomas E. Dickey 
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Processed: Re: Bug#582031: Conflict between joystick (Saitek X52) and mouse (Logitech MX)

2010-10-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 582031 https://bugs.freedesktop.org/show_bug.cgi?id=31044
Bug #582031 [xserver-xorg-input-evdev] Conflict between joystick (Saitek X52) 
and mouse (Logitech MX)
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=31044'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
582031: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582031
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.128774483130873.transcr...@bugs.debian.org



Bug#582031: Conflict between joystick (Saitek X52) and mouse (Logitech MX)

2010-10-22 Thread Cyril Brulebois
forwarded 582031 https://bugs.freedesktop.org/show_bug.cgi?id=31044
thanks

Cesare Tirabassi  (22/10/2010):
> https://bugs.freedesktop.org/show_bug.cgi?id=31044

Thanks, marking as forwarded.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#523905: xserver-xorg-input-evdev: Thinkpad trackpoint scrolling doesn't work anymore

2010-10-22 Thread Carsten Pfeiffer
Am Donnerstag, 21. Oktober 2010 schrieb Cyril Brulebois:

Hi Cyril,

I also got a new laptop (W510) and have had no such problems yet.

Thanks and best regards,
Carsten



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201010221221.32742.g...@leonde.de



Bug#582031: Conflict between joystick (Saitek X52) and mouse (Logitech MX)

2010-10-22 Thread Cesare Tirabassi

> Care to attach the output of
> grep . 
> /sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input8/capabilities/*
 
ces...@norsetto:~$ grep . 
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/*
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/abs:303007f
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/ev:1b
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/ff:0
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/key:3
  0 0 0 0
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/led:0
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/msc:10
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/rel:0
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/snd:0
/sys/devices/pci:00/:00:10.0/usb2/2-2/2-2:1.0/input/input7/capabilities/sw:0

>OK, thanks for checking. Could you please open a bug upstream then?

https://bugs.freedesktop.org/show_bug.cgi?id=31044

Thanks!

C.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101022114558.426e3...@norsetto.debian



Bug#600129: fixed in xterm 264-1

2010-10-22 Thread Thomas Dickey

On Fri, 22 Oct 2010, Vincent Lefevre wrote:


On 2010-10-21 19:18:38 -0400, Thomas Dickey wrote:

On Tue, Oct 19, 2010 at 03:14:18PM +0200, Vincent Lefevre wrote:

On 2010-10-14 23:28:16 +, Cyril Brulebois wrote:

Changes:
 xterm (264-1) unstable; urgency=low
 .
   * New upstream release:
 + Fix active-icon in specific cases (Closes: #591265).
 + Fix pointer visibility issues (Closes: #594856).
 + Fix segmentation fault with -fb and other options (Closes: #600129).


This is inaccurate. The fix has also changed the bold font here
(i.e. it looks different).


I checked the updated program with valgrind, see no problems.
Your comment states two things:

a) you're seeing either a core dump or other reproducible issue.
b) the resulting font differs.

However, there's no details given beyond the bare statement.


I've reported bug 600707 about the bold font change:

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600707


thanks - my debug trace comparing with #262 showed that I missed at least 
one place in adjusting pointer-checks on the resource strings (needed 
since they're "always" nonnull now).


There's an updated patch in ftp://invisible-island.net/temp/
(this bug modifies fontutils.c).

--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101022051906.s1...@mail101.his.com



Processed: Re: Bug#600977: in debian squeeze xephyr keybindings are totally broken

2010-10-22 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 600977 xserver-xephyr
Bug #600977 [xephyr] in debian squeeze xephyr keybindings are totally broken
Warning: Unknown package 'xephyr'
Bug reassigned from package 'xephyr' to 'xserver-xephyr'.
> --
Stopping processing here.

Please contact me if you need assistance.
-- 
600977: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600977
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12877354979078.transcr...@bugs.debian.org



Bug#600129: fixed in xterm 264-1

2010-10-22 Thread Vincent Lefevre
On 2010-10-21 19:18:38 -0400, Thomas Dickey wrote:
> On Tue, Oct 19, 2010 at 03:14:18PM +0200, Vincent Lefevre wrote:
> > On 2010-10-14 23:28:16 +, Cyril Brulebois wrote:
> > > Changes: 
> > >  xterm (264-1) unstable; urgency=low
> > >  .
> > >* New upstream release:
> > >  + Fix active-icon in specific cases (Closes: #591265).
> > >  + Fix pointer visibility issues (Closes: #594856).
> > >  + Fix segmentation fault with -fb and other options (Closes: 
> > > #600129).
> > 
> > This is inaccurate. The fix has also changed the bold font here
> > (i.e. it looks different).
> 
> I checked the updated program with valgrind, see no problems.
> Your comment states two things:
> 
>   a) you're seeing either a core dump or other reproducible issue.
>   b) the resulting font differs.
> 
> However, there's no details given beyond the bare statement.

I've reported bug 600707 about the bold font change:

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600707

This is really a change that has been introduced in xterm 264-1
(xterm 261-1 is OK).

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101022072244.gd23...@prunille.vinc17.org