summaryrefslogtreecommitdiffstats
path: root/edify/lexer.l
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-06-12 17:25:38 +0200
committerThe Android Open Source Project <initial-contribution@android.com>2009-06-12 17:25:38 +0200
commit6c301e244d0d14e3b2983350d7c383abf52b89f7 (patch)
treec6d6705c9cf240991a29b4773180691afadaf623 /edify/lexer.l
parentfix simulator build by excluding more of recovery (diff)
parentedify extensions for OTA package installation, part 1 (diff)
downloadandroid_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar
android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.gz
android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.bz2
android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.lz
android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.xz
android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.tar.zst
android_bootable_recovery-6c301e244d0d14e3b2983350d7c383abf52b89f7.zip
Diffstat (limited to 'edify/lexer.l')
-rw-r--r--edify/lexer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/edify/lexer.l b/edify/lexer.l
index 4faef5da0..cb5eb318a 100644
--- a/edify/lexer.l
+++ b/edify/lexer.l
@@ -77,7 +77,7 @@ then { gColumn += yyleng; return THEN; }
else { gColumn += yyleng; return ELSE; }
endif { gColumn += yyleng; return ENDIF; }
-[a-zA-Z0-9_:/]+ {
+[a-zA-Z0-9_:/.]+ {
gColumn += yyleng;
yylval.str = strdup(yytext);
return STRING;