From bceb2d75560be2fd7d908c86cdf3b48403048e93 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Sat, 16 Aug 2003 14:41:09 +0000 Subject: [PATCH] Make the list of default languages more comprehensive. (Suggestion of Fco. Sat Aug 16 10:34:49 2003 Owen Taylor * modules/input/imcedilla.c: Make the list of default languages more comprehensive. (Suggestion of Fco. Javier F. Serrador) Sat Aug 9 12:47:11 2003 Owen Taylor * gdk/gdk.c (gdk_arg_context_parse): Fix broken parentheses when skipping args. --- ChangeLog | 11 +++++++++++ ChangeLog.pre-2-10 | 11 +++++++++++ ChangeLog.pre-2-4 | 11 +++++++++++ ChangeLog.pre-2-6 | 11 +++++++++++ ChangeLog.pre-2-8 | 11 +++++++++++ gdk/gdk.c | 2 +- modules/input/imcedilla.c | 2 +- 7 files changed, 57 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5c6e37592b..304b7affde 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Sat Aug 16 10:34:49 2003 Owen Taylor + + * modules/input/imcedilla.c: Make the list of default + languages more comprehensive. (Suggestion of + Fco. Javier F. Serrador) + +Sat Aug 9 12:47:11 2003 Owen Taylor + + * gdk/gdk.c (gdk_arg_context_parse): Fix broken + parentheses when skipping args. + Fri Aug 15 16:54:39 2003 Owen Taylor Improve Cedilla handling - based on a patch from Gustavo diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 5c6e37592b..304b7affde 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,14 @@ +Sat Aug 16 10:34:49 2003 Owen Taylor + + * modules/input/imcedilla.c: Make the list of default + languages more comprehensive. (Suggestion of + Fco. Javier F. Serrador) + +Sat Aug 9 12:47:11 2003 Owen Taylor + + * gdk/gdk.c (gdk_arg_context_parse): Fix broken + parentheses when skipping args. + Fri Aug 15 16:54:39 2003 Owen Taylor Improve Cedilla handling - based on a patch from Gustavo diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 5c6e37592b..304b7affde 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,14 @@ +Sat Aug 16 10:34:49 2003 Owen Taylor + + * modules/input/imcedilla.c: Make the list of default + languages more comprehensive. (Suggestion of + Fco. Javier F. Serrador) + +Sat Aug 9 12:47:11 2003 Owen Taylor + + * gdk/gdk.c (gdk_arg_context_parse): Fix broken + parentheses when skipping args. + Fri Aug 15 16:54:39 2003 Owen Taylor Improve Cedilla handling - based on a patch from Gustavo diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 5c6e37592b..304b7affde 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,14 @@ +Sat Aug 16 10:34:49 2003 Owen Taylor + + * modules/input/imcedilla.c: Make the list of default + languages more comprehensive. (Suggestion of + Fco. Javier F. Serrador) + +Sat Aug 9 12:47:11 2003 Owen Taylor + + * gdk/gdk.c (gdk_arg_context_parse): Fix broken + parentheses when skipping args. + Fri Aug 15 16:54:39 2003 Owen Taylor Improve Cedilla handling - based on a patch from Gustavo diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 5c6e37592b..304b7affde 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,14 @@ +Sat Aug 16 10:34:49 2003 Owen Taylor + + * modules/input/imcedilla.c: Make the list of default + languages more comprehensive. (Suggestion of + Fco. Javier F. Serrador) + +Sat Aug 9 12:47:11 2003 Owen Taylor + + * gdk/gdk.c (gdk_arg_context_parse): Fix broken + parentheses when skipping args. + Fri Aug 15 16:54:39 2003 Owen Taylor Improve Cedilla handling - based on a patch from Gustavo diff --git a/gdk/gdk.c b/gdk/gdk.c index 0835aba512..266f594cff 100644 --- a/gdk/gdk.c +++ b/gdk/gdk.c @@ -109,7 +109,7 @@ gdk_arg_context_parse (GdkArgContext *context, gint *argc, gchar ***argv) { char *arg; - if (!(*argv)[i][0] == '-' && (*argv)[i][1] == '-') + if (!((*argv)[i][0] == '-' && (*argv)[i][1] == '-')) continue; arg = (*argv)[i] + 2; diff --git a/modules/input/imcedilla.c b/modules/input/imcedilla.c index 34c2336ba2..3c76b686d0 100644 --- a/modules/input/imcedilla.c +++ b/modules/input/imcedilla.c @@ -90,7 +90,7 @@ static const GtkIMContextInfo cedilla_info = { N_("Cedilla"), /* Human readable name */ "gtk+", /* Translation domain */ GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */ - "fr:pt" /* Languages for which this module is the default */ + "az:ca:co:fr:gv:oc:pt:sq:tr:wa" /* Languages for which this module is the default */ }; static const GtkIMContextInfo *info_list[] = {