diff --git a/ChangeLog b/ChangeLog index d418d945a4..d78b2bb705 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-12-04 Simos Xenitellis + + Bug 557420#c23: + + * gtk/gtkimcontextsimple.c: Fixed the lower bound for dead keys + to dead_grave (instead of dead_stroke). + 2008-12-01 Matthias Clasen Merged from trunk: diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c index b233dce839..532ddefb7f 100644 --- a/gtk/gtkimcontextsimple.c +++ b/gtk/gtkimcontextsimple.c @@ -415,7 +415,7 @@ check_normalize_nfc (gunichar* combination_buffer, gint n_compose) * In future versions it will be just the keysym (no +1). */ #define IS_DEAD_KEY(k) \ - ((k) >= GDK_dead_stroke && (k) <= (GDK_dead_dasia+1)) + ((k) >= GDK_dead_grave && (k) <= (GDK_dead_dasia+1)) static gboolean check_algorithmically (GtkIMContextSimple *context_simple,