Fix wrong pos of define
This commit is contained in:
parent
19b09023da
commit
752fa34d66
7
ab.c
7
ab.c
|
@ -19,8 +19,6 @@ along with wyebadblock. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
#include "wyebrun.h"
|
||||
|
||||
#define EXE "wyebab"
|
||||
|
||||
#if DEBUG
|
||||
# define D(f, ...) g_print("#"#f"\n", __VA_ARGS__);
|
||||
# define DD(a) g_print("#"#a"\n");
|
||||
|
@ -29,8 +27,11 @@ along with wyebadblock. If not, see <http://www.gnu.org/licenses/>.
|
|||
# define DD(a) ;
|
||||
#endif
|
||||
|
||||
|
||||
#if ISEXT
|
||||
|
||||
#define EXE "wyebab"
|
||||
|
||||
#include <webkit2/webkit-web-extension.h>
|
||||
static bool first = true;
|
||||
static bool check(const char *requri, const char *pageuri)
|
||||
|
@ -117,6 +118,8 @@ G_MODULE_EXPORT void webkit_web_extension_initialize_with_user_data(
|
|||
g_signal_connect(ex, "page-created", G_CALLBACK(pageinit), NULL);
|
||||
}
|
||||
|
||||
|
||||
|
||||
#else
|
||||
|
||||
#include "ephy-uri-tester.h"
|
||||
|
|
Loading…
Reference in New Issue
Block a user