0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.0-031

This commit is contained in:
Bram Moolenaar
2006-06-23 14:33:23 +00:00
parent 400fe8804c
commit 149667adbb
2 changed files with 5 additions and 1 deletions

View File

@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
31,
/**/ /**/
30, 30,
/**/ /**/

View File

@@ -585,7 +585,6 @@ extern char *(*dyn_libintl_textdomain)(const char *domainname);
#define INSERT 0x10 /* Insert mode */ #define INSERT 0x10 /* Insert mode */
#define LANGMAP 0x20 /* Language mapping, can be combined with #define LANGMAP 0x20 /* Language mapping, can be combined with
INSERT and CMDLINE */ INSERT and CMDLINE */
#define MAP_ALL_MODES 0x3f /* all mode bits used for mapping */
#define REPLACE_FLAG 0x40 /* Replace mode flag */ #define REPLACE_FLAG 0x40 /* Replace mode flag */
#define REPLACE (REPLACE_FLAG + INSERT) #define REPLACE (REPLACE_FLAG + INSERT)
@@ -605,6 +604,9 @@ extern char *(*dyn_libintl_textdomain)(const char *domainname);
#define CONFIRM 0x800 /* ":confirm" prompt */ #define CONFIRM 0x800 /* ":confirm" prompt */
#define SELECTMODE 0x1000 /* Select mode, only for mappings */ #define SELECTMODE 0x1000 /* Select mode, only for mappings */
#define MAP_ALL_MODES (0x3f | SELECTMODE) /* all mode bits used for
* mapping */
/* directions */ /* directions */
#define FORWARD 1 #define FORWARD 1
#define BACKWARD (-1) #define BACKWARD (-1)