From: Bram Moolenaar Date: Tue, 19 Jul 2005 22:10:03 +0000 (+0000) Subject: updated for version 7.0110 X-Git-Tag: v7.0110~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8c07b27126790dd9100229ac35e818d601b3dae;p=vim updated for version 7.0110 --- diff --git a/src/normal.c b/src/normal.c index 8e946429e..5f78f334d 100644 --- a/src/normal.c +++ b/src/normal.c @@ -8389,6 +8389,9 @@ nv_object(cap) case '>': flag = current_block(cap->oap, cap->count1, include, '<', '>'); break; + case 't': /* "at" = a tag block (xml and html) */ + flag = current_tagblock(cap->oap, cap->count1, include); + break; case 'p': /* "ap" = a paragraph */ flag = current_par(cap->oap, cap->count1, include, 'p'); break;