diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-11-06 05:26:15 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-11-06 05:26:15 +0100 |
commit | f5a2fd880ae8f6225814209ab73783f65078a4d5 (patch) | |
tree | 29090d43de4a770e32e36f4b0efeaa5c4e3b6f2f /src/option.h | |
parent | 4c1e626103397f8ac84ab7ca29cc74d0b3cc06e6 (diff) | |
download | vim-f5a2fd880ae8f6225814209ab73783f65078a4d5.zip |
updated for version 7.4.073
Problem: Setting undolevels for one buffer changes undo in another.
Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 167b5629e..737cbca36 100644 --- a/src/option.h +++ b/src/option.h @@ -1031,6 +1031,7 @@ enum , BV_TW , BV_TX , BV_UDF + , BV_UL , BV_WM , BV_COUNT /* must be the last one */ }; @@ -1109,3 +1110,6 @@ enum , WV_WRAP , WV_COUNT /* must be the last one */ }; + +/* Value for b_p_ul indicating the global value must be used. */ +#define NO_LOCAL_UNDOLEVEL -123456 |