aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-12-17 04:07:39 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-12-17 04:40:15 -0500
commitaa4cc17bb0819ae4b8461e8a2a6f2f78ed53c576 (patch)
tree548b0a1dfab296a4c25efbbdeb80505297b1c5e9 /runtime/indent
parent9d64d7503189e81d8b703a9f4502d06a694b4ecd (diff)
downloadrneovim-aa4cc17bb0819ae4b8461e8a2a6f2f78ed53c576.tar.gz
rneovim-aa4cc17bb0819ae4b8461e8a2a6f2f78ed53c576.tar.bz2
rneovim-aa4cc17bb0819ae4b8461e8a2a6f2f78ed53c576.zip
vim-patch:9da7ff7
Updated runtime files. https://github.com/vim/vim/commit/9da7ff70cc22c941b7e6810c7d960d0061040436
Diffstat (limited to 'runtime/indent')
-rw-r--r--runtime/indent/html.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/html.vim b/runtime/indent/html.vim
index d64a0e5cd3..b97a905988 100644
--- a/runtime/indent/html.vim
+++ b/runtime/indent/html.vim
@@ -2,7 +2,7 @@
" Header: "{{{
" Maintainer: Bram Moolenaar
" Original Author: Andy Wokula <anwoku@yahoo.de>
-" Last Change: 2014 Aug 23
+" Last Change: 2015 Jan 11
" Version: 1.0
" Description: HTML indent script with cached state for faster indenting on a
" range of lines.
@@ -883,7 +883,7 @@ endfunc "}}}
" THE MAIN INDENT FUNCTION. Return the amount of indent for v:lnum.
func! HtmlIndent()
"{{{
- if prevnonblank(v:lnum - 1) <= 1
+ if prevnonblank(v:lnum - 1) < 1
" First non-blank line has no indent.
return 0
endif