mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.3.507
Problem: When exiting with unsaved changes, selecting an existing file in the file dialog, there is no dialog to ask whether the existing file should be overwritten. (Felipe G. Nievinski) Solution: Call check_overwrite() before writing. (Christian Brabandt)
This commit is contained in:
@@ -25,7 +25,6 @@ static int viminfo_encoding __ARGS((vir_T *virp));
|
|||||||
static int read_viminfo_up_to_marks __ARGS((vir_T *virp, int forceit, int writing));
|
static int read_viminfo_up_to_marks __ARGS((vir_T *virp, int forceit, int writing));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int check_overwrite __ARGS((exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other));
|
|
||||||
static int check_readonly __ARGS((int *forceit, buf_T *buf));
|
static int check_readonly __ARGS((int *forceit, buf_T *buf));
|
||||||
#ifdef FEAT_AUTOCMD
|
#ifdef FEAT_AUTOCMD
|
||||||
static void delbuf_msg __ARGS((char_u *name));
|
static void delbuf_msg __ARGS((char_u *name));
|
||||||
@@ -2722,7 +2721,7 @@ theend:
|
|||||||
* May set eap->forceit if a dialog says it's OK to overwrite.
|
* May set eap->forceit if a dialog says it's OK to overwrite.
|
||||||
* Return OK if it's OK, FAIL if it is not.
|
* Return OK if it's OK, FAIL if it is not.
|
||||||
*/
|
*/
|
||||||
static int
|
int
|
||||||
check_overwrite(eap, buf, fname, ffname, other)
|
check_overwrite(eap, buf, fname, ffname, other)
|
||||||
exarg_T *eap;
|
exarg_T *eap;
|
||||||
buf_T *buf;
|
buf_T *buf;
|
||||||
|
@@ -1489,6 +1489,7 @@ dialog_changed(buf, checkall)
|
|||||||
char_u buff[DIALOG_MSG_SIZE];
|
char_u buff[DIALOG_MSG_SIZE];
|
||||||
int ret;
|
int ret;
|
||||||
buf_T *buf2;
|
buf_T *buf2;
|
||||||
|
exarg_T ea;
|
||||||
|
|
||||||
dialog_msg(buff, _("Save changes to \"%s\"?"),
|
dialog_msg(buff, _("Save changes to \"%s\"?"),
|
||||||
(buf->b_fname != NULL) ?
|
(buf->b_fname != NULL) ?
|
||||||
@@ -1498,13 +1499,19 @@ dialog_changed(buf, checkall)
|
|||||||
else
|
else
|
||||||
ret = vim_dialog_yesnocancel(VIM_QUESTION, NULL, buff, 1);
|
ret = vim_dialog_yesnocancel(VIM_QUESTION, NULL, buff, 1);
|
||||||
|
|
||||||
|
/* Init ea pseudo-structure, this is needed for the check_overwrite()
|
||||||
|
* function. */
|
||||||
|
ea.append = ea.forceit = FALSE;
|
||||||
|
|
||||||
if (ret == VIM_YES)
|
if (ret == VIM_YES)
|
||||||
{
|
{
|
||||||
#ifdef FEAT_BROWSE
|
#ifdef FEAT_BROWSE
|
||||||
/* May get file name, when there is none */
|
/* May get file name, when there is none */
|
||||||
browse_save_fname(buf);
|
browse_save_fname(buf);
|
||||||
#endif
|
#endif
|
||||||
if (buf->b_fname != NULL) /* didn't hit Cancel */
|
if (buf->b_fname != NULL && check_overwrite(&ea, buf,
|
||||||
|
buf->b_fname, buf->b_ffname, FALSE) == OK)
|
||||||
|
/* didn't hit Cancel */
|
||||||
(void)buf_write_all(buf, FALSE);
|
(void)buf_write_all(buf, FALSE);
|
||||||
}
|
}
|
||||||
else if (ret == VIM_NO)
|
else if (ret == VIM_NO)
|
||||||
@@ -1532,7 +1539,9 @@ dialog_changed(buf, checkall)
|
|||||||
/* May get file name, when there is none */
|
/* May get file name, when there is none */
|
||||||
browse_save_fname(buf2);
|
browse_save_fname(buf2);
|
||||||
#endif
|
#endif
|
||||||
if (buf2->b_fname != NULL) /* didn't hit Cancel */
|
if (buf2->b_fname != NULL && check_overwrite(&ea, buf2,
|
||||||
|
buf2->b_fname, buf2->b_ffname, FALSE) == OK)
|
||||||
|
/* didn't hit Cancel */
|
||||||
(void)buf_write_all(buf2, FALSE);
|
(void)buf_write_all(buf2, FALSE);
|
||||||
#ifdef FEAT_AUTOCMD
|
#ifdef FEAT_AUTOCMD
|
||||||
/* an autocommand may have deleted the buffer */
|
/* an autocommand may have deleted the buffer */
|
||||||
|
@@ -23,6 +23,7 @@ void ex_file __ARGS((exarg_T *eap));
|
|||||||
void ex_update __ARGS((exarg_T *eap));
|
void ex_update __ARGS((exarg_T *eap));
|
||||||
void ex_write __ARGS((exarg_T *eap));
|
void ex_write __ARGS((exarg_T *eap));
|
||||||
int do_write __ARGS((exarg_T *eap));
|
int do_write __ARGS((exarg_T *eap));
|
||||||
|
int check_overwrite __ARGS((exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other));
|
||||||
void ex_wnext __ARGS((exarg_T *eap));
|
void ex_wnext __ARGS((exarg_T *eap));
|
||||||
void do_wqall __ARGS((exarg_T *eap));
|
void do_wqall __ARGS((exarg_T *eap));
|
||||||
int not_writing __ARGS((void));
|
int not_writing __ARGS((void));
|
||||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
507,
|
||||||
/**/
|
/**/
|
||||||
506,
|
506,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user