Boost logo

Boost-Commit :

From: frank.birbacher_at_[hidden]
Date: 2008-05-06 09:57:25


Author: birbacher
Date: 2008-05-06 09:57:24 EDT (Tue, 06 May 2008)
New Revision: 45170
URL: http://svn.boost.org/trac/boost/changeset/45170

Log:
setting more keywords for bjam syntax highlighting
Text files modified:
   sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java | 2 +-
   sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamBuiltinRule.java | 12 ++++++------
   sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamFlowRule.java | 2 +-
   sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamPunctuationRule.java | 2 +-
   4 files changed, 9 insertions(+), 9 deletions(-)

Modified: sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java
==============================================================================
--- sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java (original)
+++ sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java 2008-05-06 09:57:24 EDT (Tue, 06 May 2008)
@@ -11,7 +11,7 @@
 public class CommandsRule extends WordRuleBase {
     static private final String[] targets = new String[] { "import", "using",
             "build-project", "explicit", "requirements", "usage-requirements",
- "build-dir" };
+ "build-dir", };
 
     public CommandsRule(final IToken token) {
         super(targets, token);

Modified: sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamBuiltinRule.java
==============================================================================
--- sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamBuiltinRule.java (original)
+++ sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamBuiltinRule.java 2008-05-06 09:57:24 EDT (Tue, 06 May 2008)
@@ -10,12 +10,12 @@
 
 public class JamBuiltinRule extends WordRuleBase {
     static private final String[] targets = new String[] { "DEPENDS",
- "INCLUDES", "ALWAYS", "LEAVES", "NOCARE", "NOTFILE", "NOUPDATE",
- "TEMPORARY", "FAIL_EXPECTED", "RMOLD", "ISFILE", "ECHO", "EXIT",
- "GLOB", "MATCH", "BACKTRACE", "UPDATE", "W32_GETREG",
- "W32_GETREGNAMES", "SHELL", "SEARCH", "LOCATE", "HDRSCAN",
- "HDRRULE", "__TIMING_RULE__", "__ACTION_RULE__", "RULENAMES",
- "VARNAMES", "EXPORT", "CALLER_MODULE", "DELETE_MODULE" };
+ "INCLUDES", "IMPORT", "ALWAYS", "LEAVES", "NOCARE", "NOTFILE",
+ "NOUPDATE", "TEMPORARY", "FAIL_EXPECTED", "RMOLD", "ISFILE",
+ "ECHO", "EXIT", "GLOB", "MATCH", "BACKTRACE", "UPDATE",
+ "W32_GETREG", "W32_GETREGNAMES", "SHELL", "SEARCH", "LOCATE",
+ "HDRSCAN", "HDRRULE", "__TIMING_RULE__", "__ACTION_RULE__",
+ "RULENAMES", "VARNAMES", "EXPORT", "CALLER_MODULE", "DELETE_MODULE" };
 
     public JamBuiltinRule(final IToken token) {
         super(targets, token);

Modified: sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamFlowRule.java
==============================================================================
--- sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamFlowRule.java (original)
+++ sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamFlowRule.java 2008-05-06 09:57:24 EDT (Tue, 06 May 2008)
@@ -11,7 +11,7 @@
 public class JamFlowRule extends WordRuleBase {
     static private final String[] targets = new String[] { "for", "in", "if",
             "else", "include", "local", "return", "switch", "case", "while",
- "rule", "actions", "module" };
+ "rule", "actions", "module", "class" };
 
     public JamFlowRule(final IToken token) {
         super(targets, token);

Modified: sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamPunctuationRule.java
==============================================================================
--- sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamPunctuationRule.java (original)
+++ sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/JamPunctuationRule.java 2008-05-06 09:57:24 EDT (Tue, 06 May 2008)
@@ -10,7 +10,7 @@
 
 public class JamPunctuationRule extends WordRuleBase {
     static private final String[] targets = new String[] { "=", "!=", "+=",
- "?=", "<", ">", "<=", ">=", "!", "&&", "||", "(", ")" };
+ "?=", "<", ">", "<=", ">=", "!", "&&", "||", "(", ")", "*", "+", "?" };
 
     public JamPunctuationRule(final IToken token) {
         super(targets, token);


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk