aboutsummaryrefslogtreecommitdiff
path: root/contrib/check_GNU_style.sh
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2015-05-18 07:07:36 +0000
committerTom de Vries <vries@gcc.gnu.org>2015-05-18 07:07:36 +0000
commit847b6e15110004f440d09ac2206ff112e9bafeaf (patch)
tree03993f7ebfe8262d128204c6b7ffb99bc8978669 /contrib/check_GNU_style.sh
parent7e425ad6866ce4e501ba078cc1815c0ff1dc68a8 (diff)
check_GNU_style.sh: Declare local vars with local
2015-05-18 Tom de Vries <tom@codesourcery.com> * check_GNU_style.sh (g, ag, vg, col): Declare local vars with local. From-SVN: r223283
Diffstat (limited to 'contrib/check_GNU_style.sh')
-rwxr-xr-xcontrib/check_GNU_style.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/check_GNU_style.sh b/contrib/check_GNU_style.sh
index b86c4742acf..728c11a691d 100755
--- a/contrib/check_GNU_style.sh
+++ b/contrib/check_GNU_style.sh
@@ -82,8 +82,8 @@ grep $format '^+' $files \
# Grep
g (){
- msg="$1"
- arg="$2"
+ local msg="$1"
+ local arg="$2"
cat $inp \
| egrep --color=always -- "$arg" \
> $tmp && printf "\n$msg\n"
@@ -92,9 +92,9 @@ g (){
# And Grep
ag (){
- msg="$1"
- arg1="$2"
- arg2="$3"
+ local msg="$1"
+ local arg1="$2"
+ local arg2="$3"
cat $inp \
| egrep --color=always -- "$arg1" \
| egrep --color=always -- "$arg2" \
@@ -104,9 +104,9 @@ ag (){
# reVerse Grep
vg (){
- msg="$1"
- varg="$2"
- arg="$3"
+ local msg="$1"
+ local varg="$2"
+ local arg="$3"
cat $inp \
| egrep -v -- "$varg" \
| egrep --color=always -- "$arg" \
@@ -115,7 +115,7 @@ vg (){
}
col (){
- msg="$1"
+ local msg="$1"
local first=true
local f
for f in $files; do