Author: fperrad
Date: Thu Apr 12 05:53:09 2007
New Revision: 18166
Added:
trunk/languages/regex/lib/Regex/Grammar.yp
- copied, changed from r18158, /trunk/languages/regex/lib/Regex/Grammar.y
Removed:
trunk/languages/regex/lib/Regex/Grammar.y
Modified:
trunk/languages/regex/config/makefiles/root.in
Log:
[regex]
yapp is not yacc
so Perl coda is correct, but not C coda
Modified: trunk/languages/regex/config/makefiles/root.in
==============================================================================
--- trunk/languages/regex/config/makefiles/root.in (original)
+++ trunk/languages/regex/config/makefiles/root.in Thu Apr 12 05:53:09 2007
@@ -11,8 +11,8 @@
all : lib/Regex/Grammar.pm regex-compiler.pbc
-lib/Regex/Grammar.pm : lib/Regex/Grammar.y
- $(YAPP) -s -m Regex::Grammar -o $@ lib/Regex/Grammar.y
+lib/Regex/Grammar.pm : lib/Regex/Grammar.yp
+ $(YAPP) -s -m Regex::Grammar -o $@ lib/Regex/Grammar.yp
regex-compiler.pbc : regex-compiler.pir
$(PARROT) -o regex-compiler.pbc regex-compiler.pir
Copied: trunk/languages/regex/lib/Regex/Grammar.yp (from r18158,
/trunk/languages/regex/lib/Regex/Grammar.y)
==============================================================================
--- /trunk/languages/regex/lib/Regex/Grammar.y (original)
+++ trunk/languages/regex/lib/Regex/Grammar.yp Thu Apr 12 05:53:09 2007
@@ -186,9 +186,9 @@
%%
-/*
- * Local variables:
- * c-file-style: "parrot"
- * End:
- * vim: expandtab shiftwidth=4:
- */
+# Local Variables:
+# mode: cperl
+# cperl-indent-level: 4
+# fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4: