1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

keyword_space.sed: Add \b to avoid changing functions which end with the same letters as the keywords.

This commit is contained in:
Joakim Gebart 2015-02-24 11:03:29 +01:00
parent 845fe86368
commit 0c47cee455

View File

@ -1,7 +1,7 @@
s/if(/if (/
s/switch(/switch (/
s/case(/case (/
s/while(/while (/
s/for(/for (/
s/do(/do (/
s/\bif(/if (/
s/\bswitch(/switch (/
s/\bcase(/case (/
s/\bwhile(/while (/
s/\bfor(/for (/
s/\bdo(/do (/
s/! /!/