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/\bif(/if (/
s/switch(/switch (/ s/\bswitch(/switch (/
s/case(/case (/ s/\bcase(/case (/
s/while(/while (/ s/\bwhile(/while (/
s/for(/for (/ s/\bfor(/for (/
s/do(/do (/ s/\bdo(/do (/
s/! /!/ s/! /!/