Skip to content

Commit 131256a

Browse files
committed
use upper case letter variable name to use function reference.
1 parent 3041d38 commit 131256a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

autoload/webapi/xml.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ function! s:matchNode(node, cond)
7070
endif
7171
if type(a:cond) == 3
7272
let ret = 1
73-
for r in a:cond
74-
if !s:matchNode(a:node, r) | let ret = 0 | endif
75-
unlet r
73+
for l:R in a:cond
74+
if !s:matchNode(a:node, l:R) | let ret = 0 | endif
75+
unlet l:R
7676
endfor
7777
return ret
7878
endif

0 commit comments

Comments
 (0)