diff options
-rw-r--r-- | etc/coderay-lib.tmproj | 8 | ||||
-rw-r--r-- | etc/todo/scanners/bash.rb | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/etc/coderay-lib.tmproj b/etc/coderay-lib.tmproj index 625b602..b7c9f24 100644 --- a/etc/coderay-lib.tmproj +++ b/etc/coderay-lib.tmproj @@ -96,7 +96,7 @@ <key>filename</key> <string>../diff</string> <key>lastUsed</key> - <date>2009-01-12T14:22:41Z</date> + <date>2009-01-13T06:56:37Z</date> </dict> <dict> <key>filename</key> @@ -116,7 +116,7 @@ <key>filename</key> <string>../test/scanners/coderay_suite.rb</string> <key>lastUsed</key> - <date>2009-01-11T04:30:16Z</date> + <date>2009-01-13T06:27:23Z</date> </dict> <dict> <key>filename</key> @@ -128,9 +128,7 @@ <key>filename</key> <string>../bench/bench.rb</string> <key>lastUsed</key> - <date>2009-01-12T15:01:45Z</date> - <key>selected</key> - <true/> + <date>2009-01-12T16:50:32Z</date> </dict> </array> <key>fileHierarchyDrawerWidth</key> 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 |