--- l2_spec_scan.l 2003/01/06 11:19:45 1.11
+++ l2_spec_scan.l 2003/01/06 11:41:52 1.12
@@ -1,10 +1,11 @@
%{
/*
-** OSSP l2 - Logging Library
-** Copyright (c) 2001-2002 The OSSP Project (http://www.ossp.org/)
-** Copyright (c) 2001-2002 Cable & Wireless Deutschland (http://www.cw.com/de/)
+** OSSP l2 - Flexible Logging
+** Copyright (c) 2001-2003 Cable & Wireless Deutschland GmbH
+** Copyright (c) 2001-2003 The OSSP Project (http://www.ossp.org/)
+** Copyright (c) 2001-2003 Ralf S. Engelschall <rse@engelschall.com>
**
-** This file is part of OSSP L2, a flexible logging library which
+** This file is part of OSSP l2, a flexible logging library which
** can be found at http://www.ossp.org/pkg/lib/l2/.
**
** Permission to use, copy, modify, and distribute this software for
@@ -106,7 +107,7 @@
<SS_PARAM_Q>\n {
l2_spec_error(CTX, L2_ERR_SYN, yylloc, "Unterminated string");
return 0;
-}
+}
<SS_PARAM_Q>\\[0-7]{1,3} {
unsigned int result;
(void)sscanf(yytext+1, "%o", &result);
@@ -150,7 +151,7 @@
}
/* operators */
-"->" {
+"->" {
return T_OP_ARROW;
}
|