diff options
author | Tim Hatch <tim@timhatch.com> | 2012-10-06 18:07:46 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2012-10-06 18:07:46 -0700 |
commit | f8c85345af939357e58c22cceb91a57578ff9e36 (patch) | |
tree | c57a17af05d45727ff87a53ca95174a951cb7251 /pygments/lexers/_mapping.py | |
parent | 45e4d8e91c7ad29af745a82182f173bd096fc612 (diff) | |
download | pygments-f8c85345af939357e58c22cceb91a57578ff9e36.tar.gz |
Move SourcePawn lexer from compiled to other
Diffstat (limited to 'pygments/lexers/_mapping.py')
-rw-r--r-- | pygments/lexers/_mapping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index d0c90ec2..5c20f28a 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -238,7 +238,7 @@ LEXERS = { 'SmalltalkLexer': ('pygments.lexers.other', 'Smalltalk', ('smalltalk', 'squeak'), ('*.st',), ('text/x-smalltalk',)), 'SmartyLexer': ('pygments.lexers.templates', 'Smarty', ('smarty',), ('*.tpl',), ('application/x-smarty',)), 'SnobolLexer': ('pygments.lexers.other', 'Snobol', ('snobol',), ('*.snobol',), ('text/x-snobol',)), - 'SourcePawnLexer': ('pygments.lexers.compiled', 'SourcePawn', ('sp',), ('*.sp', '*.inc'), ('text/x-sourcepawn',)), + 'SourcePawnLexer': ('pygments.lexers.other', 'SourcePawn', ('sp',), ('*.sp',), ('text/x-sourcepawn',)), 'SourcesListLexer': ('pygments.lexers.text', 'Debian Sourcelist', ('sourceslist', 'sources.list'), ('sources.list',), ()), 'SqlLexer': ('pygments.lexers.sql', 'SQL', ('sql',), ('*.sql',), ('text/x-sql',)), 'SqliteConsoleLexer': ('pygments.lexers.sql', 'sqlite3con', ('sqlite3',), ('*.sqlite3-console',), ('text/x-sqlite3-console',)), |