diff options
author | Omar Polo <op@omarpolo.com> | 2021-02-09 22:38:10 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-02-09 22:38:10 +0000 |
commit | eb59f87e67daa46d8d51ca11da12a00df0dd2361 (patch) | |
tree | 4818096b915cb8fb3be18ec24eea1f772ed5dcf4 /lex.l | |
parent | 02be96c6ddfc34e448cccd095b4f3d0efe4de8a3 (diff) |
sort
Diffstat (limited to 'lex.l')
-rw-r--r-- | lex.l | 43 |
1 files changed, 21 insertions, 22 deletions
@@ -48,35 +48,34 @@ return TNUM; } -on yylval.num = 1; return TBOOL; off yylval.num = 0; return TBOOL; +on yylval.num = 1; return TBOOL; +auto return TAUTO; +block return TBLOCK; +ca return TCA; +cert return TCERT; +cgi return TCGI; +chroot return TCHROOT; +client return TCLIENT; +default return TDEFAULT; +entrypoint return TENTRYPOINT; +index return TINDEX; ipv6 return TIPV6; -port return TPORT; -protocols return TPROTOCOLS; +key return TKEY; +lang return TLANG; +location return TLOCATION; mime return TMIME; -default return TDEFAULT; -type return TTYPE; -chroot return TCHROOT; -user return TUSER; -server return TSERVER; +port return TPORT; prefork return TPREFORK; - -location return TLOCATION; -cert return TCERT; -key return TKEY; +protocols return TPROTOCOLS; +require return TREQUIRE; +return return TRETURN; root return TROOT; -cgi return TCGI; -lang return TLANG; -index return TINDEX; -auto return TAUTO; +server return TSERVER; strip return TSTRIP; -block return TBLOCK; -return return TRETURN; -entrypoint return TENTRYPOINT; -require return TREQUIRE; -client return TCLIENT; -ca return TCA; +type return TTYPE; +user return TUSER; [{}] return *yytext; |