From b31388d4fc16a05d2ff87f341e681335f47909b5 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 4 Jun 2012 10:40:46 -0400 Subject: [PATCH] leave url_regex outside of an ifdef for now --- config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index ec0029c..6667d57 100644 --- a/config.h +++ b/config.h @@ -5,8 +5,9 @@ #define CLICKABLE_URL //#define ICON_NAME "terminal" -#ifdef CLICKABLE_URL static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+]*"; + +#ifdef CLICKABLE_URL #define URL_COMMAND(URL_MATCH) {"/usr/bin/firefox", URL_MATCH, NULL} #endif