After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 349638 - Cannot Compose (multi_key) polish l (or L) with stroke, "ł"
Cannot Compose (multi_key) polish l (or L) with stroke, "ł"
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Input Methods
2.10.x
Other Linux
: Normal normal
: ---
Assigned To: Hidetoshi Tajima
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2006-08-02 08:31 UTC by Daniel Lublin
Modified: 2006-12-23 21:10 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Composing L with stroke (2.40 KB, patch)
2006-12-08 14:13 UTC, Daniel Lublin
none Details | Review

Description Daniel Lublin 2006-08-02 08:31:35 UTC
Looking into the source, I find that precisely this character is
missing from the table of compose mappings in gtk/gtkimcontextsimple.c

I'm running gtk+ 2.8.18 (of Debian unstable), but this applies to the
source code of 2.10.1 as well.

To fix this, it seems one only would have to add a couple of lines
to the file in question; like this:

446a447
>   GDK_Multi_key,  GDK_slash,  GDK_L,  0,   0, 0x0141, /* LATIN_CAPITAL_LETTER_L_WITH_STROKE */
451a453
>   GDK_Multi_key,  GDK_slash,  GDK_l,  0,   0, 0x0142, /* LATIN_SMALL_LETTER_L_WITH_STROKE */
Comment 1 Daniel Lublin 2006-12-08 14:13:33 UTC
Created attachment 77962 [details] [review]
Composing L with stroke
Comment 2 Daniel Lublin 2006-12-08 14:14:59 UTC
Nothing is happening with this? The composition of L
with stroke is still missing, in 2.10.6.

Just now I tried compiling the Debian unstable gtk+,
2.8.20-3, (my system was not ready for 2.10.x) with
an updated version of my patch (attached), and it
worked fine.

Perhaps I'm the only one missing Ł, but the fix is
simple and harmless; just do it ;)
Comment 3 Matthias Clasen 2006-12-23 21:10:11 UTC
2006-12-23  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkimcontextsimple.c: Allow composing l with
        stroke.  (#349638, Daniel Lublin)