GNU bug report logs - #3379
23.0.94; Crash after accessing Options > Set Default Font...

Previous Next

Packages: emacs, w32;

Reported by: "Francis Wright" <F.J.Wright <at> qmul.ac.uk>

Date: Mon, 25 May 2009 21:45:05 UTC

Severity: normal

Done: Jason Rumney <jasonr <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Jason Rumney <jasonr <at> f2s.com>
To: Shannon Jones <cz2s20d02 <at> sneakemail.com>, 3379 <at> debbugs.gnu.org
Subject: bug#3379: Tooltip is causing crash
Date: Wed, 03 Jun 2009 20:59:53 +0800
Shannon Jones wrote:
> I tried this, and I think it's not the menu that is causing the
> crash.  I think it's the tooltip that appears when you hover over
> an item on the tool-bar.
>   

Thank you for pointing us in the right direction. It is actually a 
problem with font backends on Windows. As CVS is down, I can't check in 
the immediate workaround - which is to add the uniscribe backend to 
x_create_tip_frame in w32fns.c so:

 register_font_driver (&w32font_driver, f);

becomes:

 if (uniscribe_available)
   register_font_driver (&uniscribe_font_driver, f);
 register_font_driver (&w32font_driver, f);


The bug still triggers with the same recipe if you do the following:

(add-to-list 'tooltip-frame-parameters '(font-backend . "gdi"))

but I can't reproduce the bug on GNU/Linux doing something similar 
(substituting "x" for "gdi"), so it still seems to be a Windows specific 
bug.




This bug report was last modified 15 years and 305 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.