diff options
-rw-r--r-- | autoload/ale/fixers/astyle.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fixers/astyle.vim b/autoload/ale/fixers/astyle.vim index 0abceb10..04e4b69a 100644 --- a/autoload/ale/fixers/astyle.vim +++ b/autoload/ale/fixers/astyle.vim @@ -25,7 +25,7 @@ function! ale#fixers#astyle#FindProjectOptions(buffer) abort " If user has set project options variable then use it and skip any searching. " This would allow users to use project files named differently than .astylerc. if !empty(l:proj_options) - return l:proj_options + return l:proj_options endif " Try to find nearest .astylerc file. |