| 167 context = g_option_context_new(NULL); |
167 context = g_option_context_new(NULL); |
| 168 g_option_context_set_summary(context, DISPLAY_VERSION); |
168 g_option_context_set_summary(context, DISPLAY_VERSION); |
| 169 g_option_context_add_main_entries(context, option_entries, PACKAGE); |
169 g_option_context_add_main_entries(context, option_entries, PACKAGE); |
| 170 |
170 |
| 171 g_option_context_add_group(context, purple_get_option_group()); |
171 g_option_context_add_group(context, purple_get_option_group()); |
| |
172 #ifdef PURPLE_PLUGINS |
| 172 g_option_context_add_group(context, gplugin_get_option_group()); |
173 g_option_context_add_group(context, gplugin_get_option_group()); |
| |
174 #endif |
| 173 |
175 |
| 174 #ifdef G_OS_WIN32 |
176 #ifdef G_OS_WIN32 |
| 175 /* Handle Unicode filenames on Windows. See GOptionContext docs. */ |
177 /* Handle Unicode filenames on Windows. See GOptionContext docs. */ |
| 176 args = g_win32_get_command_line(); |
178 args = g_win32_get_command_line(); |
| 177 #else |
179 #else |