1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-01 12:24:14 +01:00

Don't break C++ style (//) comments during auto-format.

http://code.google.com/p/arduino/issues/detail?id=255
This commit is contained in:
David A. Mellis 2012-07-14 20:53:20 -04:00
parent 6036846ce3
commit 6030f9670b

View File

@ -241,7 +241,7 @@ public class AutoFormat implements Tool {
public void cpp_comment() throws IOException
{
c = getchr();
while(c != '\n' && c != '\r' && j<133)
while(c != '\n' && c != '\r')
{
string[j++] = c;
c = getchr();