]> Dogcows Code - chaz/openbox/blobdiff - openbox/engine.c
export the NumLock and ScrollLock masks
[chaz/openbox] / openbox / engine.c
index 3457da1838bd9c9f8e35ae0a5f7b4fb9fbfdd353..b1873abc9ba939307558a930e920320a11d813c1 100644 (file)
@@ -23,13 +23,13 @@ static gboolean load(char *name)
     g_assert(module == NULL);
 
     path = g_build_filename(ENGINEDIR, name, NULL);
-    module = g_module_open(path, G_MODULE_BIND_LAZY);
+    module = g_module_open(path, 0);
     g_free(path);
 
     if (module == NULL) {
        path = g_build_filename(g_get_home_dir(), ".openbox", "engines", name,
                                NULL);
-       module = g_module_open(path, G_MODULE_BIND_LAZY);
+       module = g_module_open(path, 0);
        g_free(path);
     }
 
This page took 0.019852 seconds and 4 git commands to generate.