|
From: <caw...@us...> - 2007-04-04 14:02:19
|
Revision: 2271
http://svn.sourceforge.net/rubyeclipse/?rev=2271&view=rev
Author: cawilliams
Date: 2007-04-04 07:02:18 -0700 (Wed, 04 Apr 2007)
Log Message:
-----------
another fix for Ticket #249
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyTokenScanner.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyTokenScanner.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyTokenScanner.java 2007-04-04 14:02:03 UTC (rev 2270)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyTokenScanner.java 2007-04-04 14:02:18 UTC (rev 2271)
@@ -173,7 +173,8 @@
|| (i == Tokens.tLT) || (i == Tokens.tGT) || (i == Tokens.tAMPER)
|| (i == Tokens.tSTAR2) || (i == Tokens.tDIVIDE) || (i == Tokens.tPERCENT)
|| (i == Tokens.tBACK_REF2) || (i == Tokens.tTILDE) || (i == Tokens.tCONSTANT)
- || (i == 10) /* Newline */ || ( i >= 257 && i <= 303) /* keywords */) {
+ || (i == Tokens.tFID) || (i == 10) /* Newline */
+ || ( i >= 257 && i <= 303) /* keywords */) {
isInSymbol = false; // we're at the end of the symbol
if (i == 10) // newline ends it and is actually default, not symbol
return doGetToken(IRubyColorConstants.RUBY_DEFAULT);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|