diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-13 12:49:39 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-13 12:49:39 +0000 |
commit | 0c7ce77a00469e0d8956de3df06b5fde4023ad47 (patch) | |
tree | b5da55efdab4e1ea1faa4d933dbbd14ce841d1e7 | |
parent | 4221e5fa6c407ab40c34b38b7c2e8a7d4e733663 (diff) | |
download | vim-git-0c7ce77a00469e0d8956de3df06b5fde4023ad47.tar.gz |
updated for version 7.2-168v7.2.168
-rwxr-xr-x | src/auto/configure | 1 | ||||
-rw-r--r-- | src/configure.in | 3 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/src/auto/configure b/src/auto/configure index 889204283..347db650d 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -15707,6 +15707,7 @@ test -f tags && mv tags tags.save if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then TAGPRG="ctags -I INIT+ --fields=+S" else + TAGPRG="ctags" (eval etags /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="etags" (eval etags -c /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="etags -c" (eval ctags /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="ctags" diff --git a/src/configure.in b/src/configure.in index 682141722..8060d4d97 100644 --- a/src/configure.in +++ b/src/configure.in @@ -2968,7 +2968,7 @@ fi dnl Link with xpg4, it is said to make Korean locale working AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,) -dnl Check how we can run ctags +dnl Check how we can run ctags. Default to "ctags" when nothing works. dnl --version for Exuberant ctags (preferred) dnl Add --fields=+S to get function signatures for omni completion. dnl -t for typedefs (many ctags have this) @@ -2980,6 +2980,7 @@ test -f tags && mv tags tags.save if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then TAGPRG="ctags -I INIT+ --fields=+S" else + TAGPRG="ctags" (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags" (eval etags -c /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags -c" (eval ctags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags" diff --git a/src/version.c b/src/version.c index 028a49ea5..165025578 100644 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 168, +/**/ 167, /**/ 166, |