diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-23 23:34:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-23 23:34:36 +0200 |
commit | 55debbe38429b81c0ce6e8400aef36812eb151d7 (patch) | |
tree | 992320729b697015fb4b99e9f8645cffe2eeddd6 /src/option.h | |
parent | c39125d7c45d17566665c06358501073ea9c4141 (diff) | |
download | vim-55debbe38429b81c0ce6e8400aef36812eb151d7.zip |
Included patch for persistent undo. Lots of changes and added test.
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index b49c0c47f..f0ebc8de7 100644 --- a/src/option.h +++ b/src/option.h @@ -815,6 +815,7 @@ static char *(p_ttym_values[]) = {"xterm", "xterm2", "dec", "netterm", "jsbterm" # define TTYM_JSBTERM 0x10 # define TTYM_PTERM 0x20 #endif +EXTERN char_u *p_udir; /* 'undodir' */ EXTERN long p_ul; /* 'undolevels' */ EXTERN long p_uc; /* 'updatecount' */ EXTERN long p_ut; /* 'updatetime' */ @@ -1004,6 +1005,7 @@ enum , BV_TS , BV_TW , BV_TX + , BV_UDF , BV_WM , BV_COUNT /* must be the last one */ }; |