summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Whetsell <nathan.whetsell@gmail.com>2015-10-23 21:13:55 -0400
committerNathan Whetsell <nathan.whetsell@gmail.com>2015-10-23 21:13:55 -0400
commitbd1d943efc27031032e2f8c911c0909381b577ca (patch)
tree03f037d4d3abecfddc62e977bbca8c19df3280bb
parent676a1dcf9ae1b3e3a47ea3e6dd349281f655b8fa (diff)
downloadpygments-bd1d943efc27031032e2f8c911c0909381b577ca.tar.gz
Ignore instr opcode
-rw-r--r--pygments/lexers/_csound_builtins.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/_csound_builtins.py b/pygments/lexers/_csound_builtins.py
index ddf87a64..5f7a798a 100644
--- a/pygments/lexers/_csound_builtins.py
+++ b/pygments/lexers/_csound_builtins.py
@@ -12,6 +12,7 @@
# endop <http://www.csounds.com/manual/html/endop.html
# goto <http://www.csounds.com/manual/html/goto.html>
# igoto <http://www.csounds.com/manual/html/igoto.html>
+# instr <http://www.csounds.com/manual/html/instr.html>
# kgoto <http://www.csounds.com/manual/html/kgoto.html>
# loop_ge <http://www.csounds.com/manual/html/loop_ge.html>
# loop_gt <http://www.csounds.com/manual/html/loop_gt.html>
@@ -463,7 +464,7 @@ OPCODES = set((
'ins',
'insglobal',
'insremot',
- 'instr',
+ #'instr',
'int',
'integ',
'interp',