summaryrefslogtreecommitdiff
path: root/libpeas/peas-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpeas/peas-utils.c')
-rw-r--r--libpeas/peas-utils.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/libpeas/peas-utils.c b/libpeas/peas-utils.c
index 292e8ec..d65e22c 100644
--- a/libpeas/peas-utils.c
+++ b/libpeas/peas-utils.c
@@ -31,18 +31,17 @@
#include "peas-utils.h"
static const gchar *all_plugin_loaders[] = {
- "c", "lua5.1", "python", "python3"
+ "c", "lua5.1", "python",
};
static const gchar *all_plugin_loader_modules[] = {
- "cloader", "lua51loader", "pythonloader", "python3loader"
+ "cloader", "lua51loader", "pythonloader",
};
static const gint conflicting_plugin_loaders[PEAS_UTILS_N_LOADERS][2] = {
- { -1, -1 }, /* c => {} */
- { -1, -1 }, /* lua5.1 => {} */
- { 3, -1 }, /* python => { python3 } */
- { 2, -1 } /* python3 => { python } */
+ { -1, -1 }, /* c => {} */
+ { -1, -1 }, /* lua5.1 => {} */
+ { -1, -1 }, /* python => {} */
};
G_STATIC_ASSERT (G_N_ELEMENTS (all_plugin_loaders) == PEAS_UTILS_N_LOADERS);