summaryrefslogtreecommitdiff
path: root/etc/todo
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2009-01-13 16:04:44 +0000
committermurphy <murphy@rubychan.de>2009-01-13 16:04:44 +0000
commit3c38cb71a68498951f82c5684cdcf60125a55e1b (patch)
treeade987528fb82e86e71cfd994d571071a7875567 /etc/todo
parent594c034dd51b7955a8ab7828bf8030abee027801 (diff)
downloadcoderay-3c38cb71a68498951f82c5684cdcf60125a55e1b.tar.gz
Update for the Bash Scanner (todo).
Diffstat (limited to 'etc/todo')
-rw-r--r--etc/todo/scanners/bash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/todo/scanners/bash.rb b/etc/todo/scanners/bash.rb
index cbc9e25..d5c5d0f 100644
--- a/etc/todo/scanners/bash.rb
+++ b/etc/todo/scanners/bash.rb
@@ -82,7 +82,7 @@ module CodeRay
elsif match = scan(/[a-zA-Z]\w*/)
tokens << [match, :ident]
elsif match = scan(/\#!.*/) # until eof
- tokens << [match, :preprocessor]
+ tokens << [match, :doctype]
elsif match = scan(/\#.*/) # until eof
tokens << [match, :comment]
# catch the rest as other