From 304a63d8e349cd9a5f66f36dee15138d66b62503 Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 28 Dec 2007 15:27:31 -0800 Subject: [PATCH] Fix protect/endprotect This patch makes stable match the development branch. `protect/`endprotect are not required to be on their own line. --- lexor.lex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lexor.lex b/lexor.lex index 4fcf64567..74b05e900 100644 --- a/lexor.lex +++ b/lexor.lex @@ -281,10 +281,10 @@ W [ \t\b\f\r]+ ^{W}?`disable_portfaults{W}?.* { } ^{W}?`enable_portfaults{W}?.* { } ^{W}?`endcelldefine{W}?.* { } -^{W}?`endprotect{W}?.* { } +`endprotect { } ^{W}?`nosuppress_faults{W}?.* { } ^{W}?`nounconnected_drive{W}?.* { } -^{W}?`protect{W}?.* { } +`protect { } ^{W}?`resetall{W}?.* { } ^{W}?`suppress_faults{W}?.* { } ^{W}?`unconnected_drive{W}?.* { }