--- linuxsampler/trunk/src/network/lscp.y 2005/05/24 01:46:20 572 +++ linuxsampler/trunk/src/network/lscp.y 2005/05/24 03:18:30 573 @@ -79,6 +79,14 @@ //TODO: return more meaningful error messages +/* + The LSCP specification input file (Documentation/lscp.xml) is automatically + updated with this file using the scripts/update_grammar.pl script. Do not + modify or delete the GRAMMAR_BNF_BEGIN and GRAMMAR_BNF_END lines ! +*/ + +// GRAMMAR_BNF_BEGIN - do NOT delete or modify this line !!! + input : line LF | line CR LF ; @@ -256,6 +264,8 @@ | dotnum { std::stringstream ss; ss << "\'" << $1 << "\'"; $$ = ss.str(); } ; +// GRAMMAR_BNF_END - do NOT delete or modify this line !!! + // atomic variable symbol rules