diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-04-21 20:33:35 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-04-21 20:33:35 (GMT) |
commit | 9c754bfc4442a261df17c127262884437f03c27c (patch) | |
tree | ed13d97a166992fc23c150c44be4c95380b78100 | |
parent | b2b2e68c37644983cbdf8552f2be3125551c6452 (diff) | |
download | CMake-9c754bfc4442a261df17c127262884437f03c27c.zip CMake-9c754bfc4442a261df17c127262884437f03c27c.tar.gz CMake-9c754bfc4442a261df17c127262884437f03c27c.tar.bz2 |
BUG: Fix typo
-rw-r--r-- | Docs/cmake-indent.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs/cmake-indent.vim b/Docs/cmake-indent.vim index d0711d9..a1ad832 100644 --- a/Docs/cmake-indent.vim +++ b/Docs/cmake-indent.vim @@ -56,7 +56,7 @@ fun! CMakeGetIndent(lnum) \ or . '[^()\\#"]' . or . '\\.' . '\)*' let cmake_indent_comment_line = '^\s*' . cmake_regex_comment - let cmake_indent_blank_regex = '^\s*$') + let cmake_indent_blank_regex = '^\s*$' let cmake_indent_open_regex = '^\s*' . cmake_regex_identifier . \ '\s*(' . cmake_regex_arguments . \ '\(' . cmake_regex_comment . '\)\?$' |