diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-06 04:25:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-06 04:25:55 +0200 |
commit | 5bec94652c9dd1d8cab260c4dd10e44d3f38f3cd (patch) | |
tree | fc61484a30532ef89f24c5b60534dccc56408d17 /src/clint.py | |
parent | 55c0401dfd137a5e173d8551f763cb4c6fed56e1 (diff) | |
parent | 3827d5bc713d9ed149bc793f411debb5b89a4eba (diff) | |
download | rneovim-5bec94652c9dd1d8cab260c4dd10e44d3f38f3cd.tar.gz rneovim-5bec94652c9dd1d8cab260c4dd10e44d3f38f3cd.tar.bz2 rneovim-5bec94652c9dd1d8cab260c4dd10e44d3f38f3cd.zip |
Merge #7110 from justinmk/preserve-wildmenu
Diffstat (limited to 'src/clint.py')
-rwxr-xr-x | src/clint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/clint.py b/src/clint.py index 69a061d2ab..4a41650ec4 100755 --- a/src/clint.py +++ b/src/clint.py @@ -2613,7 +2613,8 @@ def CheckBraces(filename, clean_lines, linenum, error): func_start_linenum += 1 else: - if clean_lines.lines[func_start_linenum].endswith('{'): + func_start = clean_lines.lines[func_start_linenum] + if not func_start.startswith('enum ') and func_start.endswith('{'): error(filename, func_start_linenum, 'readability/braces', 5, 'Brace starting function body must be placed ' |