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
1 changed files with 6 additions and 6 deletions

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/! /!/