mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
Revert "Fix keyword loading to use any whitespace as separator"
This reverts commit eed9e7069f
.
See #6693
This commit is contained in:
parent
1cf34c8250
commit
0175a4ee94
@ -115,7 +115,7 @@ public class PdeKeywords {
|
||||
continue;
|
||||
}
|
||||
|
||||
String pieces[] = line.split("\\s+", 4);
|
||||
String pieces[] = line.split("\t");
|
||||
|
||||
String keyword = pieces[0].trim();
|
||||
if (keyword.startsWith("\\#")) {
|
||||
|
@ -5,7 +5,6 @@ ARDUINO 1.8.6
|
||||
* Added scroller in programmers menu.
|
||||
* Added "accelerator" in scrollable menu, press "a" key while scrolling
|
||||
* Keep "Board Manager" menu item always as first in the menu
|
||||
* keyword.txt now allows any whitespace. Thanks @bhagman
|
||||
|
||||
[wifi101-firmware]
|
||||
* SECURITY FIX: Released fix for WPA2 KRACK vulnerability (latest WINC1500 firmware 19.5.2).
|
||||
|
Loading…
Reference in New Issue
Block a user