Author: paultcochrane
Date: Mon Apr  9 01:45:33 2007
New Revision: 18054

Modified:
   trunk/languages/PIR/examples/call.pir
   trunk/languages/PIR/examples/call2.pir
   trunk/languages/PIR/examples/calltest.pir
   trunk/languages/PIR/examples/dot.pir
   trunk/languages/PIR/examples/flags.pir
   trunk/languages/PIR/examples/hllmap.pir
   trunk/languages/PIR/examples/keys.pir
   trunk/languages/PIR/examples/label.pir
   trunk/languages/PIR/examples/labels.pir
   trunk/languages/PIR/examples/line.pir
   trunk/languages/PIR/examples/macro.pir
   trunk/languages/PIR/examples/macro2.pir
   trunk/languages/PIR/examples/macrotry.pir
   trunk/languages/PIR/examples/multi.pir
   trunk/languages/PIR/examples/namespace.pir
   trunk/languages/PIR/examples/namespaces.pir
   trunk/languages/PIR/examples/nci.pir
   trunk/languages/PIR/examples/obj.pir
   trunk/languages/PIR/examples/pasmtest.pir
   trunk/languages/PIR/examples/pod.pir
   trunk/languages/PIR/examples/reserved.pir
   trunk/languages/PIR/examples/string.pir
   trunk/languages/PIR/examples/subs.pir
   trunk/languages/PIR/examples/test.pir
   trunk/languages/PIR/examples/test1.pir
   trunk/languages/PIR/pirc.pir

Log:
[PIR] Added pir emacs/vim coda as per coding standards

Modified: trunk/languages/PIR/examples/call.pir
==============================================================================
--- trunk/languages/PIR/examples/call.pir       (original)
+++ trunk/languages/PIR/examples/call.pir       Mon Apr  9 01:45:33 2007
@@ -5,3 +5,9 @@
        "x"(1.1, 1)
 
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/call2.pir
==============================================================================
--- trunk/languages/PIR/examples/call2.pir      (original)
+++ trunk/languages/PIR/examples/call2.pir      Mon Apr  9 01:45:33 2007
@@ -42,3 +42,9 @@
 
 .end
 #
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/calltest.pir
==============================================================================
--- trunk/languages/PIR/examples/calltest.pir   (original)
+++ trunk/languages/PIR/examples/calltest.pir   Mon Apr  9 01:45:33 2007
@@ -6,3 +6,9 @@
 
 .sub x
 .end              
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/dot.pir
==============================================================================
--- trunk/languages/PIR/examples/dot.pir        (original)
+++ trunk/languages/PIR/examples/dot.pir        Mon Apr  9 01:45:33 2007
@@ -19,3 +19,9 @@
 
 
 
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/flags.pir
==============================================================================
--- trunk/languages/PIR/examples/flags.pir      (original)
+++ trunk/languages/PIR/examples/flags.pir      Mon Apr  9 01:45:33 2007
@@ -65,3 +65,9 @@
 
 .sub Z :immediate
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/hllmap.pir
==============================================================================
--- trunk/languages/PIR/examples/hllmap.pir     (original)
+++ trunk/languages/PIR/examples/hllmap.pir     Mon Apr  9 01:45:33 2007
@@ -1,2 +1,8 @@
 
 .HLL_map 22 , 22
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/keys.pir
==============================================================================
--- trunk/languages/PIR/examples/keys.pir       (original)
+++ trunk/languages/PIR/examples/keys.pir       Mon Apr  9 01:45:33 2007
@@ -16,3 +16,9 @@
        
 
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/label.pir
==============================================================================
--- trunk/languages/PIR/examples/label.pir      (original)
+++ trunk/languages/PIR/examples/label.pir      Mon Apr  9 01:45:33 2007
@@ -4,3 +4,9 @@
   end
   
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/labels.pir
==============================================================================
--- trunk/languages/PIR/examples/labels.pir     (original)
+++ trunk/languages/PIR/examples/labels.pir     Mon Apr  9 01:45:33 2007
@@ -10,3 +10,9 @@
                end
        a6:
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/line.pir
==============================================================================
--- trunk/languages/PIR/examples/line.pir       (original)
+++ trunk/languages/PIR/examples/line.pir       Mon Apr  9 01:45:33 2007
@@ -364,3 +364,9 @@
 
 
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/macro.pir
==============================================================================
--- trunk/languages/PIR/examples/macro.pir      (original)
+++ trunk/languages/PIR/examples/macro.pir      Mon Apr  9 01:45:33 2007
@@ -5,3 +5,9 @@
 x = .b
 .endm 
 
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/macro2.pir
==============================================================================
--- trunk/languages/PIR/examples/macro2.pir     (original)
+++ trunk/languages/PIR/examples/macro2.pir     Mon Apr  9 01:45:33 2007
@@ -47,3 +47,9 @@
        a = a
        .X(a,b)
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/macrotry.pir
==============================================================================
--- trunk/languages/PIR/examples/macrotry.pir   (original)
+++ trunk/languages/PIR/examples/macrotry.pir   Mon Apr  9 01:45:33 2007
@@ -7,3 +7,9 @@
 .sub m
 
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/multi.pir
==============================================================================
--- trunk/languages/PIR/examples/multi.pir      (original)
+++ trunk/languages/PIR/examples/multi.pir      Mon Apr  9 01:45:33 2007
@@ -14,3 +14,9 @@
 .sub bar :multi("x", "x")
 
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/namespace.pir
==============================================================================
--- trunk/languages/PIR/examples/namespace.pir  (original)
+++ trunk/languages/PIR/examples/namespace.pir  Mon Apr  9 01:45:33 2007
@@ -11,3 +11,9 @@
   print x
   end
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/namespaces.pir
==============================================================================
--- trunk/languages/PIR/examples/namespaces.pir (original)
+++ trunk/languages/PIR/examples/namespaces.pir Mon Apr  9 01:45:33 2007
@@ -1,2 +1,8 @@
 
 .namespace ["a";"b";"c";"e"]
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/nci.pir
==============================================================================
--- trunk/languages/PIR/examples/nci.pir        (original)
+++ trunk/languages/PIR/examples/nci.pir        Mon Apr  9 01:45:33 2007
@@ -3,3 +3,9 @@
   .nci_call $P1 # r = funcname(x, y, z)      
   .pcc_end                                 
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/obj.pir
==============================================================================
--- trunk/languages/PIR/examples/obj.pir        (original)
+++ trunk/languages/PIR/examples/obj.pir        Mon Apr  9 01:45:33 2007
@@ -10,3 +10,9 @@
 .sub str :vtable
 
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/pasmtest.pir
==============================================================================
--- trunk/languages/PIR/examples/pasmtest.pir   (original)
+++ trunk/languages/PIR/examples/pasmtest.pir   Mon Apr  9 01:45:33 2007
@@ -12,3 +12,9 @@
 .end
 
        
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/pod.pir
==============================================================================
--- trunk/languages/PIR/examples/pod.pir        (original)
+++ trunk/languages/PIR/examples/pod.pir        Mon Apr  9 01:45:33 2007
@@ -1,3 +1,9 @@
 .sub main
        end
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/reserved.pir
==============================================================================
--- trunk/languages/PIR/examples/reserved.pir   (original)
+++ trunk/languages/PIR/examples/reserved.pir   Mon Apr  9 01:45:33 2007
@@ -7,3 +7,9 @@
        
 .end
 
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/string.pir
==============================================================================
--- trunk/languages/PIR/examples/string.pir     (original)
+++ trunk/languages/PIR/examples/string.pir     Mon Apr  9 01:45:33 2007
@@ -4,3 +4,9 @@
   
   end
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/subs.pir
==============================================================================
--- trunk/languages/PIR/examples/subs.pir       (original)
+++ trunk/languages/PIR/examples/subs.pir       Mon Apr  9 01:45:33 2007
@@ -54,3 +54,9 @@
        #f(x :flat)
        #f(x :named )
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/test.pir
==============================================================================
--- trunk/languages/PIR/examples/test.pir       (original)
+++ trunk/languages/PIR/examples/test.pir       Mon Apr  9 01:45:33 2007
@@ -27,3 +27,9 @@
     'cmp'()
 .end
 
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/examples/test1.pir
==============================================================================
--- trunk/languages/PIR/examples/test1.pir      (original)
+++ trunk/languages/PIR/examples/test1.pir      Mon Apr  9 01:45:33 2007
@@ -8,3 +8,9 @@
   
   
 .end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Modified: trunk/languages/PIR/pirc.pir
==============================================================================
--- trunk/languages/PIR/pirc.pir        (original)
+++ trunk/languages/PIR/pirc.pir        Mon Apr  9 01:45:33 2007
@@ -359,3 +359,9 @@
 Klaas-Jan Stol <[EMAIL PROTECTED]>
 
 =cut
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Reply via email to