check_GNU_style.sh: Improve readability function calls

2015-05-18  Tom de Vries  <tom@codesourcery.com>

	* check_GNU_style.sh: Improve readability function calls.

From-SVN: r223282
This commit is contained in:
Tom de Vries 2015-05-18 07:07:27 +00:00 committed by Tom de Vries
parent ff10afd391
commit 7e425ad686
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2015-05-18 Tom de Vries <tom@codesourcery.com>
* check_GNU_style.sh: Improve readability function calls.
2015-05-12 Tom de Vries <tom@codesourcery.com>
* check_GNU_style.sh (col): Fix tab size.

View File

@ -170,11 +170,12 @@ g 'Sentences should end with a dot. Dot, space, space, end of the comment.' \
'[[:alnum:]][[:blank:]]*\*/'
vg 'There should be exactly one space between function name and parentheses.' \
'\#define' '[[:alnum:]]([[:blank:]]{2,})?\('
'\#define' \
'[[:alnum:]]([[:blank:]]{2,})?\('
g 'There should be no space before closing parentheses.' \
'[[:graph:]][[:blank:]]+\)'
ag 'Braces should be on a separate line.' \
'\{' 'if[[:blank:]]\(|while[[:blank:]]\(|switch[[:blank:]]\('
'\{' \
'if[[:blank:]]\(|while[[:blank:]]\(|switch[[:blank:]]\('