diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-15 08:10:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 08:10:21 +0800 |
commit | 8051fa1aff24952b9d077ba44bc2b84fd1626345 (patch) | |
tree | 1471237a96e2ef38db915b67b7f1f6257bf9ced5 /src/nvim/message.c | |
parent | 758d7726df1cabd3ed93403e087dab93fc3ceba7 (diff) | |
parent | 5220891571a799fd630cbcbe836d1f9e3d2dc1fa (diff) | |
download | rneovim-8051fa1aff24952b9d077ba44bc2b84fd1626345.tar.gz rneovim-8051fa1aff24952b9d077ba44bc2b84fd1626345.tar.bz2 rneovim-8051fa1aff24952b9d077ba44bc2b84fd1626345.zip |
Merge pull request #17394 from zeertzjq/vim-8.2.4343
vim-patch:8.2.4343: when reloading not all properties are detected
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r-- | src/nvim/message.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 93742ccbdb..b39450cdc6 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -3464,6 +3464,7 @@ void msg_advance(int col) /// /// @param textfiel IObuff for inputdialog(), NULL otherwise /// @param ex_cmd when TRUE pressing : accepts default and starts Ex command +/// @returns 0 if cancelled, otherwise the nth button (1-indexed). int do_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield, int ex_cmd) { |