comparison src/tag.c @ 1785:65c332f15dbf v7.2.083

updated for version 7.2-083
author vimboss
date Tue, 13 Jan 2009 16:28:21 +0000
parents 6aea606c9e91
children bbf0ba46e51d
comparison
equal deleted inserted replaced
1784:be7491f23e9d 1785:65c332f15dbf
513 513
514 /* 514 /*
515 * If a count is supplied to the ":tag <name>" command, then 515 * If a count is supplied to the ":tag <name>" command, then
516 * jump to count'th matching tag. 516 * jump to count'th matching tag.
517 */ 517 */
518 if (type == DT_TAG && count > 0) 518 if (type == DT_TAG && *tag != NUL && count > 0)
519 cur_match = count - 1; 519 cur_match = count - 1;
520 520
521 if (type == DT_SELECT || type == DT_JUMP 521 if (type == DT_SELECT || type == DT_JUMP
522 #if defined(FEAT_QUICKFIX) 522 #if defined(FEAT_QUICKFIX)
523 || type == DT_LTAG 523 || type == DT_LTAG