Remove unused var.

This commit is contained in:
Israel Chauca Fuentes
2012-02-08 00:22:04 -05:00
parent 604260f56e
commit db54dadb46

View File

@@ -305,7 +305,7 @@ function! delimitMate#QuoteDelim(char) "{{{
if delimitMate#IsForbidden(a:char)
return a:char
endif
if line[col] == "\\"
if delimitMate#GetCharBeforeCursor() == "\\"
" Seems like a escaped character, insert one quotation mark.
return a:char
"elseif line[col + 1] == a:char &&