diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-11-09 03:31:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-11-09 03:31:51 +0100 |
commit | 45d3b1454c1001001ef97746556d3142788a8383 (patch) | |
tree | 7978ed006e36ad2984ec3afda7b1027b8f4dca30 /src/proto/ex_cmds2.pro | |
parent | 815135e4082dce22a264cc1f176187221d5313cf (diff) | |
download | vim-45d3b1454c1001001ef97746556d3142788a8383.zip |
updated for version 7.4.082
Problem: Using "gf" in a changed buffer suggests adding "!", which is not
possible. (Tim Chase)
Solution: Pass a flag to check_changed() wether adding ! make sense.
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r-- | src/proto/ex_cmds2.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index d30ba41ef..0ac3e1492 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -35,7 +35,7 @@ void prof_inchar_exit __ARGS((void)); int prof_def_func __ARGS((void)); int autowrite __ARGS((buf_T *buf, int forceit)); void autowrite_all __ARGS((void)); -int check_changed __ARGS((buf_T *buf, int checkaw, int mult_win, int forceit, int allbuf)); +int check_changed __ARGS((buf_T *buf, int flags)); void browse_save_fname __ARGS((buf_T *buf)); void dialog_changed __ARGS((buf_T *buf, int checkall)); int can_abandon __ARGS((buf_T *buf, int forceit)); |