Syntax highlighting with / bug low file :PdeKeywords.java function:markTokensImpl(...) Explanation: During the scanning of the line to check if the Token belongs to Processing Syntax ,When my current character is "/" , we check if the next character(if any) is "*" or "/" , and we do then an increment of the scanning index , so in this case , and if the next character in an alphabet we don’t have a problem , but if it is " " (a space) , the loss of this character will make the lastKeyword scan index incorrect , so we get this problem of highlighting . To solve it, we check before incrementing the index, if the next character is " ", so we don’t increment. Result and Test: The example mouseX/ mouseY highlight the two PDE keyword and the fix http://processing.org/bugs/bugzilla/609.html //* println("1"); /*/ println("2"); //*/ still working .So i think this fix works
Processing
This is the official source code for the Processing Development Environment (PDE), the “core” and the libraries that are included with the download.
If you have found a bug in the Processing software, you can file it here under the “issues” tab. If it relates to the JavaScript version, please use their issue tracker. All Android-related development has moved to its own repository here, so issues with Android Mode, or with the Android version of the core library should be posted there instead.
The issues list has been imported from Google Code, so there are many spurious references amongst them since the numbering changed. Basically, any time you see references to changes made by processing-bugs, it may be somewhat suspect. Over time this will clean itself up as bugs are fixed and new issues are added from within Github. Help speed this process along by helping us!
The processing-web repository contains reference, examples, and the site. (Please use that link to file issues regarding the web site, the examples, or the reference.)
The instructions for building the source are here, although they need an update.
Someday we'll also write code style guidelines, fix all these bugs, throw together hundreds of unit tests, and solve the Israeli-Palestinian conflict.
But in the meantime, I ask for your patience, participation, and patches.
Ben Fry, 3 February 2013
Last updated 21 April 2013