1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-01 23:29:28 +01:00

Revert "Fix keyword loading to use any whitespace as separator"

This reverts commit eed9e7069feae039d07da66382176ffed37fd9cb.
See #6693
This commit is contained in:
Cristian Maglie 2018-02-19 12:02:50 +01:00
parent 1cf34c8250
commit 0175a4ee94
2 changed files with 1 additions and 2 deletions

View File

@ -115,7 +115,7 @@ public class PdeKeywords {
continue; continue;
} }
String pieces[] = line.split("\\s+", 4); String pieces[] = line.split("\t");
String keyword = pieces[0].trim(); String keyword = pieces[0].trim();
if (keyword.startsWith("\\#")) { if (keyword.startsWith("\\#")) {

View File

@ -5,7 +5,6 @@ ARDUINO 1.8.6
* Added scroller in programmers menu. * Added scroller in programmers menu.
* Added "accelerator" in scrollable menu, press "a" key while scrolling * Added "accelerator" in scrollable menu, press "a" key while scrolling
* Keep "Board Manager" menu item always as first in the menu * Keep "Board Manager" menu item always as first in the menu
* keyword.txt now allows any whitespace. Thanks @bhagman
[wifi101-firmware] [wifi101-firmware]
* SECURITY FIX: Released fix for WPA2 KRACK vulnerability (latest WINC1500 firmware 19.5.2). * SECURITY FIX: Released fix for WPA2 KRACK vulnerability (latest WINC1500 firmware 19.5.2).