diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-20 17:32:38 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-20 17:32:38 +0200 |
commit | 49771f4fb03349d87e42c12305ebd5b307f3c2bd (patch) | |
tree | 89eb7ec2a47e0e9582b45b7586c43b70fa53dc1b /src/proto/misc2.pro | |
parent | c7040a5615827cefe0edbdf7f69c6640fa1aa1e1 (diff) | |
download | vim-git-49771f4fb03349d87e42c12305ebd5b307f3c2bd.tar.gz |
Change 'cryptmethod' from a number to a string option. Make it global-local.
Diffstat (limited to 'src/proto/misc2.pro')
-rw-r--r-- | src/proto/misc2.pro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto/misc2.pro b/src/proto/misc2.pro index 8d3397fc1..3fa0c9b3b 100644 --- a/src/proto/misc2.pro +++ b/src/proto/misc2.pro @@ -80,6 +80,9 @@ int illegal_slash __ARGS((char *name)); char_u *parse_shape_opt __ARGS((int what)); int get_shape_idx __ARGS((int mouse)); void update_mouseshape __ARGS((int shape_idx)); +int crypt_method_from_string __ARGS((char_u *s)); +int get_crypt_method __ARGS((buf_T *buf)); +void set_crypt_method __ARGS((buf_T *buf, int method)); void crypt_push_state __ARGS((void)); void crypt_pop_state __ARGS((void)); void crypt_encode __ARGS((char_u *from, size_t len, char_u *to)); |