Fixed C/C++ tokenizer number recognition: + 1 (plus-space-one) was recognized as a number instead of a punctuation and a separate number.
diff --git a/TextEditor.cpp b/TextEditor.cpp
index c294a4d..8bb433e 100644
--- a/TextEditor.cpp
+++ b/TextEditor.cpp
@@ -2035,9 +2035,6 @@
 	

 	p++;

 	

-	while (p < in_end && isblank(*p))

-		p++;

-	

 	bool hasNumber = startsWithNumber;

 	

 	while (p < in_end && (*p >= '0' && *p <= '9'))