GNOME Bugzilla – Bug 349638
Cannot Compose (multi_key) polish l (or L) with stroke, "ł"
Last modified: 2006-12-23 21:10:11 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 */
Created attachment 77962 [details] [review] Composing L with stroke
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 ;)
2006-12-23 Matthias Clasen <mclasen@redhat.com> * gtk/gtkimcontextsimple.c: Allow composing l with stroke. (#349638, Daniel Lublin)