X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=plugins%2Fmouse%2Fmouserc_parse.l;h=79e96e3e290c73c41e3558245d606b70c2d8105c;hb=f532a746f00e06382726fd86690bc4d3da1edda8;hp=4b553081fd473b31fa78fd421e9189c15b2795d4;hpb=232e0030943bd7c3b332aca8e05618558d08d297;p=chaz%2Fopenbox diff --git a/plugins/mouse/mouserc_parse.l b/plugins/mouse/mouserc_parse.l index 4b553081..79e96e3e 100644 --- a/plugins/mouse/mouserc_parse.l +++ b/plugins/mouse/mouserc_parse.l @@ -7,7 +7,6 @@ static int lineno; static char *path; -static gboolean comment; static gboolean error; static char *context; @@ -21,13 +20,12 @@ static void gotfield(); static void addbinding(); %} -field [A-Za-z0-9][-A-Za-z0-9]*[^-] -sep [ \t]+ +field [A-Za-z0-9][-A-Za-z0-9]* white [ \t]* %% -^{white}# comment = TRUE; +^{white}#.*\n lineno++; {field} gotfield(); \n endofline(); [ \t] @@ -37,30 +35,26 @@ white [ \t]* static void gotfield() { - if (!comment) { - if (context == NULL) - context = g_strdup(mparsetext); - else if (event == NULL) - event = g_strdup(mparsetext); - else if (button == NULL) - button = g_strdup(mparsetext); - else if (action == NULL) - action = g_strdup(mparsetext); - else - error = TRUE; - } + if (context == NULL) + context = g_strdup(mparsetext); + else if (event == NULL) + event = g_strdup(mparsetext); + else if (button == NULL) + button = g_strdup(mparsetext); + else if (action == NULL) + action = g_strdup(mparsetext); + else + error = TRUE; } static void endofline() { - if (!comment) { - if (!error && context && event && button && action) - addbinding(); - else if (error || context || event || button || action) - g_warning("Parser error in '%s' on line %d", path, lineno); - } + if (!error && context && event && button && action) + addbinding(); + else if (error || context || event || button || action) + g_warning("Parser error in '%s' on line %d", path, lineno); - comment = error = FALSE; + error = FALSE; g_free(context); g_free(event); g_free(button); g_free(action); context = event = button = action = NULL; @@ -222,7 +216,6 @@ void mouserc_parse() } lineno = 1; - comment = FALSE; error = FALSE; context = event = button = action = NULL;