From: Dana Jansens Date: Mon, 14 Apr 2003 04:26:19 +0000 (+0000) Subject: allow _'s in identifiers X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=fd069520c97a58b252b0d3e9360f4c7edaa36a0e;p=chaz%2Fopenbox allow _'s in identifiers --- diff --git a/openbox/parse.l b/openbox/parse.l index 64896e07..3762f335 100644 --- a/openbox/parse.l +++ b/openbox/parse.l @@ -10,7 +10,7 @@ extern int lineno; real [-0-9][0-9]*\.[0-9]+ integer [-0-9][0-9]* string \"[^"\n]*\" -identifier [a-zA-Z][-.a-zA-Z0-9]* +identifier [a-zA-Z][-.a-zA-Z0-9_]* bool ([tT][rR][uU][eE]|[fF][aA][lL][sS][eE]|[yY][eE][sS]|[nN][oO]|[oO][nN]|[oO][fF][fF]) %%