vim-patch:9.1.0265: console dialog cannot save unnamed buffers (#28185)

Problem:  console dialog cannot save unnamed buffers
Solution: set bufname before save (glepnir). Define dialog_con_gui
          to test for GUI+Console dialog support, use it to skip
          the test when the GUI feature has been defined.

Note: The dialog_changed() function will also try to call the
browse_save_fname() function, when FEAT_BROWSE is defined (which is only
defined in a GUI build of Vim). This will eventually lead to a call of
do_browse(), which causes an error message if a GUI is not currently
running (see the TODO: in do_browse()) and will then lead to a failure
in Test_goto_buf_with_onfirm().

Therefore, we must disable the Test_goto_buf_with_onfirm(), when the
dialog_con_gui feature is enabled (which basically means dialog feature
for GUI and Console builds, in contrast to the dialog_con and dialog_gui
feature).

(Previously this wasn't a problem, because the test aborted in the YES
case for the :confirm :b XgotoConf case and did therefore not run into
the browse function call)

closes: vim/vim#14398

df46115fc8

Co-authored-by: glepnir <glephunter@gmail.com>
This commit is contained in:
zeertzjq
2024-04-05 18:32:04 +08:00
committed by GitHub
parent 9711370c26
commit 6ecb5d2d0c
2 changed files with 32 additions and 9 deletions

View File

@@ -203,6 +203,7 @@ void dialog_changed(buf_T *buf, bool checkall)
.append = false,
.forceit = false,
};
bool empty_buf = buf->b_fname == NULL;
dialog_msg(buff, _("Save changes to \"%s\"?"), buf->b_fname);
if (checkall) {
@@ -212,10 +213,23 @@ void dialog_changed(buf_T *buf, bool checkall)
}
if (ret == VIM_YES) {
if (buf->b_fname != NULL
&& check_overwrite(&ea, buf, buf->b_fname, buf->b_ffname, false) == OK) {
if (empty_buf) {
buf_set_name(buf->b_fnum, "Untitled");
}
if (check_overwrite(&ea, buf, buf->b_fname, buf->b_ffname, false) == OK) {
// didn't hit Cancel
buf_write_all(buf, false);
if (buf_write_all(buf, false) == OK) {
return;
}
}
// restore to empty when write failed
if (empty_buf) {
XFREE_CLEAR(buf->b_fname);
XFREE_CLEAR(buf->b_ffname);
XFREE_CLEAR(buf->b_sfname);
unchanged(buf, true, false);
}
} else if (ret == VIM_NO) {
unchanged(buf, true, false);