Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-3]: src/sbin/veriexecctl Pull up revision 1.6 (requested by elad ...
details: https://anonhg.NetBSD.org/src/rev/06f946e3f0c0
branches: netbsd-3
changeset: 576355:06f946e3f0c0
user: tron <tron%NetBSD.org@localhost>
date: Sat Jul 02 15:46:19 2005 +0000
description:
Pull up revision 1.6 (requested by elad in ticket #487):
Some refactoring and bugfixes:
- Report line numbers correctly.
- Don't perform a 2nd pass when there are were errors during 1st.
- Support multiple, comma-separated flags. This is mostly a reworking of
some parser internals preparing for planned features.
diffstat:
sbin/veriexecctl/veriexecctl_conf.l | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diffs (21 lines):
diff -r 7faf32400362 -r 06f946e3f0c0 sbin/veriexecctl/veriexecctl_conf.l
--- a/sbin/veriexecctl/veriexecctl_conf.l Sat Jul 02 15:46:13 2005 +0000
+++ b/sbin/veriexecctl/veriexecctl_conf.l Sat Jul 02 15:46:19 2005 +0000
@@ -1,5 +1,5 @@
%{
-/* $NetBSD: veriexecctl_conf.l,v 1.2.2.3 2005/06/10 14:55:05 tron Exp $ */
+/* $NetBSD: veriexecctl_conf.l,v 1.2.2.4 2005/07/02 15:46:19 tron Exp $ */
/*-
* Copyright 2005 Elad Efrat <elad%bsd.org.il@localhost>
@@ -80,6 +80,10 @@
return EOL;
}
+"," {
+ return TOKEN_COMMA;
+ }
+
. { yyerror("Invalid character"); }
%%
Home |
Main Index |
Thread Index |
Old Index