From 1e01546026ce909b5fe56c05867f28e77d1b6eb3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 25 Sep 2005 22:16:38 +0000 Subject: updated for version 7.0150 --- src/feature.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/feature.h') diff --git a/src/feature.h b/src/feature.h index 0ab57e93a..e69fcd9f2 100644 --- a/src/feature.h +++ b/src/feature.h @@ -201,13 +201,6 @@ # define VIM_BACKTICK /* internal backtick expansion */ #endif -/* - * +textobjects Text objects: "vaw", "das", etc. - */ -#ifdef FEAT_NORMAL -# define FEAT_TEXTOBJ -#endif - /* * +visual Visual mode. * +visualextra Extra features for Visual mode (mostly block operators). @@ -383,11 +376,19 @@ * +profile Profiling for functions and scripts. */ #if defined(FEAT_HUGE) \ + && defined(FEAT_EVAL) \ && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \ || defined(WIN3264)) # define FEAT_PROFILE #endif +/* + * +textobjects Text objects: "vaw", "das", etc. + */ +#if defined(FEAT_NORMAL) && defined(FEAT_EVAL) +# define FEAT_TEXTOBJ +#endif + /* * Insert mode completion with 'completefunc'. */ -- cgit v1.2.1