Hello,
I fed up with commenting out all appearences of the 'version' keyword in
the .uil files.
Every time the Uil compiler finds one, it exits with the following
output:
input_file.uil:<line_number>: parse error
current token 'version'
Let's fix it (see patch below):
-----------------------------------------
$ cvs diff -uN clients/Motif-1.2/uil/lex.l
Index: clients/Motif-1.2/uil/lex.l
===================================================================
RCS file: /cvsroot/lesstif/lesstif/clients/Motif-1.2/uil/lex.l,v
retrieving revision 1.8
diff -u -r1.8 lex.l
--- clients/Motif-1.2/uil/lex.l 2000/09/25 10:09:30 1.8
+++ clients/Motif-1.2/uil/lex.l 2000/11/17 19:05:58
@@ -224,7 +224,7 @@
}
version {
- return VERSION;
+ return VERSION_t;
}
module {
------------------------------------------
Regards,
Andrei