diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-10-21 00:10:39 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-10-21 00:10:39 +0200 |
commit | 9f340fa57b91db9c04307c99cd4475f197d7a5c8 (patch) | |
tree | b7be09f511971a7e931fb52cbbe0a2ec115f719c /src/proto/option.pro | |
parent | 205f9f5e2d4b25a94072644bbcdd2c8b20ad7b80 (diff) | |
download | vim-git-9f340fa57b91db9c04307c99cd4475f197d7a5c8.tar.gz |
updated for version 7.3.693v7.3.693
Problem: Can't make 'softtabstop' follow 'shiftwidth'.
Solution: When 'softtabstop' is negative use the value of 'shiftwidth'.
(so8res)
Diffstat (limited to 'src/proto/option.pro')
-rw-r--r-- | src/proto/option.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/option.pro b/src/proto/option.pro index 7d3d8d651..fd71704ec 100644 --- a/src/proto/option.pro +++ b/src/proto/option.pro @@ -57,4 +57,5 @@ void save_file_ff __ARGS((buf_T *buf)); int file_ff_differs __ARGS((buf_T *buf, int ignore_empty)); int check_ff_value __ARGS((char_u *p)); long get_sw_value __ARGS((void)); +long get_sts_value __ARGS((void)); /* vim: set ft=c : */ |