diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-01 16:44:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-01 16:44:03 +0200 |
commit | e0429681aed5448d1c3b8399d152a2b1a05ea6d7 (patch) | |
tree | 973983ac7327502a40ac91593c628e9846616748 /src/proto.h | |
parent | ca06da92432a57e5dcf3e0eebd322fae80941a6b (diff) | |
download | vim-git-e0429681aed5448d1c3b8399d152a2b1a05ea6d7.tar.gz |
patch 8.1.0135: undo message delays screen update for CTRL-O uv8.1.0135
Problem: Undo message delays screen update for CTRL-O u.
Solution: Add smsg_attr_keep(). (closes #3125)
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h index 655b72cac..8570af947 100644 --- a/src/proto.h +++ b/src/proto.h @@ -119,6 +119,12 @@ int # ifdef __BORLANDC__ _RTLENTRYF # endif +smsg_attr_keep(int, char_u *, ...); + +int +# ifdef __BORLANDC__ +_RTLENTRYF +# endif vim_snprintf_add(char *, size_t, char *, ...) #ifdef USE_PRINTF_FORMAT_ATTRIBUTE __attribute__((format(printf, 3, 4))) |