fix a retarded bug with FlagSet.clearFlags

This commit is contained in:
Martin Grenfell 2014-07-06 23:36:45 +01:00
parent 32cf3ee62d
commit 3941389f13

View File

@ -12,7 +12,7 @@ function! s:FlagSet.addFlag(scope, flag)
endfunction endfunction
"FUNCTION: FlagSet.clearFlags(scope) {{{1 "FUNCTION: FlagSet.clearFlags(scope) {{{1
function! s:FlagSet.clearFlags(scope, flag) function! s:FlagSet.clearFlags(scope)
let self._flags[a:scope] = [] let self._flags[a:scope] = []
endfunction endfunction