[svn:parrot] r37583 - trunk/editor

coke at svn.parrot.org coke at svn.parrot.org
Thu Mar 19 05:17:59 UTC 2009


Author: coke
Date: Thu Mar 19 05:17:58 2009
New Revision: 37583
URL: https://trac.parrot.org/parrot/changeset/37583

Log:
Don't reference Deprecated .HLL_map in editor highlighting.

Modified:
   trunk/editor/pir-mode.el
   trunk/editor/pir_vim.in

Modified: trunk/editor/pir-mode.el
==============================================================================
--- trunk/editor/pir-mode.el	Thu Mar 19 05:08:38 2009	(r37582)
+++ trunk/editor/pir-mode.el	Thu Mar 19 05:17:58 2009	(r37583)
@@ -226,7 +226,7 @@
     ":slurpy" ":unique_reg" ":vtable" ":wrap"))
 
 (defvar pir-dotted-directives
-  '(".HLL" ".HLL_map" ".arg" ".const" ".constant" ".emit" ".end" ".endm"
+  '(".HLL" ".arg" ".const" ".constant" ".emit" ".end" ".endm"
     ".endnamespace" ".eom" ".get_results" ".global" ".globalconst"
     ".include" ".invocant" ".lex" ".line" ".loadlib" ".macro" ".meth_call"
     ".namespace" ".nci_call" ".pcc_begin" ".pcc_begin_return"

Modified: trunk/editor/pir_vim.in
==============================================================================
--- trunk/editor/pir_vim.in	Thu Mar 19 05:08:38 2009	(r37582)
+++ trunk/editor/pir_vim.in	Thu Mar 19 05:17:58 2009	(r37583)
@@ -40,7 +40,7 @@
 syn match pirDirective  /\.\(local\|sym\|const\|lex\|global\|globalconst\)/
 syn match pirDirective  /\.\(endnamespace\|namespace\)/
 syn match pirDirective  /\.\(param\|arg\|return\|yield\)/
-syn match pirDirective  /\.\(pragma\|HLL_map\|HLL\|include\|loadlib\)/
+syn match pirDirective  /\.\(pragma\|HLL\|include\|loadlib\)/
 syn match pirDirective  /\.\(pcc_begin\|pcc_call\|pcc_end\|invocant\|meth_call\|nci_call\)/
 syn match pirDirective  /\.\(pcc_begin_return\|pcc_end_return\)/
 syn match pirDirective  /\.\(pcc_begin_yield\|pcc_end_yield\)/


More information about the parrot-commits mailing list