comparison src/tag.c @ 3804:8fdadfccd184 v7.3.660

updated for version 7.3.660 Problem: ":help !" jumps to help for ":!". Solution: Adjust check for tag header line. (Andy Wokula)
author Bram Moolenaar <bram@vim.org>
date Wed, 12 Sep 2012 18:19:46 +0200
parents a638ae0f1b0c
children 66803af09906
comparison
equal deleted inserted replaced
3803:1052677493be 3804:8fdadfccd184
1795 * When still at the start of the file, check for Emacs tags file 1795 * When still at the start of the file, check for Emacs tags file
1796 * format, and for "not sorted" flag. 1796 * format, and for "not sorted" flag.
1797 */ 1797 */
1798 if (state == TS_START) 1798 if (state == TS_START)
1799 { 1799 {
1800 if (STRNCMP(lbuf, "!_TAG_", 6) <= 0) 1800 if (STRNCMP(lbuf, "!_TAG_", 6) == 0)
1801 { 1801 {
1802 /* 1802 /*
1803 * Read header line. 1803 * Read header line.
1804 */ 1804 */
1805 #ifdef FEAT_TAG_BINS 1805 #ifdef FEAT_TAG_BINS