Subversion Repositories DevTools

Rev

Rev 2161 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2161 Rev 2163
Line 1025... Line 1025...
1025
               // if the first token appears to be a tag
1025
               // if the first token appears to be a tag
1026
               if (force == true
1026
               if (force == true
1027
                  || tokens[0].StartsWith("REQ")
1027
                  || tokens[0].StartsWith("REQ")
1028
                  || tokens[0].StartsWith("TAG")
1028
                  || tokens[0].StartsWith("TAG")
1029
                  || tokens[0].StartsWith("SPR")
1029
                  || tokens[0].StartsWith("SPR")
-
 
1030
                  || tokens[0].StartsWith("<")
1030
                  || (tokens[0].IndexOfAny(numbers) > 0 && tokens[0].IndexOfAny(letters) == 0))
1031
                  || (tokens[0].IndexOfAny(numbers) > 0 && tokens[0].IndexOfAny(letters) == 0))
1031
               {
1032
               {
1032
                  // return the token after the tag.
1033
                  // return the token after the tag.
1033
                  return tokens[1];
1034
                  return tokens[1];
1034
               }
1035
               }