diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-04 14:23:44 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-04 14:23:44 +0000 |
commit | 02f5d8f817cf9629b1ed485751bff2b9991f0b92 (patch) | |
tree | a3e6c97e74239263bf5ce19b39759db076685e07 /usr.sbin/config/scan.l | |
parent | 3cc0fdf59cb12a9819c742bfd4c26bbb22c31421 (diff) |
Add rmoption/rmoptions; useful for people who want a slightly
modified version of GENERIC.
Diffstat (limited to 'usr.sbin/config/scan.l')
-rw-r--r-- | usr.sbin/config/scan.l | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/config/scan.l b/usr.sbin/config/scan.l index 71724810bc4..e0065b45c01 100644 --- a/usr.sbin/config/scan.l +++ b/usr.sbin/config/scan.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: scan.l,v 1.12 1998/06/27 01:45:47 deraadt Exp $ */ +/* $OpenBSD: scan.l,v 1.13 2000/01/04 14:23:43 angelos Exp $ */ /* $NetBSD: scan.l,v 1.13 1997/02/02 21:12:37 thorpej Exp $ */ /* @@ -115,6 +115,8 @@ root return ROOT; source return SOURCE; swap return SWAP; with return WITH; +rmoption return RMOPTIONS; +rmoptions return RMOPTIONS; {PATH} { yylval.str = intern(yytext); |