bugfix for stripping :Mark markup from a line

This commit is contained in:
Martin Grenfell 2008-06-06 23:13:05 +12:00
parent 5fd7441dbe
commit 219d16f61a

View File

@ -2315,7 +2315,7 @@ function! s:StripMarkupFromLine(line, removeLeadingSpaces)
let line = substitute (line, s:tree_RO_str_reg, "","")
"strip off any mark flags
let line = substitute (line, ' {[^}*]}', "","")
let line = substitute (line, ' {[^}]*}', "","")
let wasdir = 0
if line =~ '/$'