Ticket #4540: mcedit: macro deletes text.

(edit_user_menu): fix misinterpretation of return value of
edit_block_delete_cmd(). The bug was introduced in
e2e34d82ab.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Sprite_tm 2024-05-21 21:56:03 +03:00 committed by Andrew Borodin
parent 425938e460
commit fdacad8bbb
1 changed files with 2 additions and 2 deletions

View File

@ -1821,14 +1821,14 @@ edit_user_menu (WEdit * edit, const char *menu_file, int selected_entry)
if (user_menu_cmd (CONST_WIDGET (edit), menu_file, selected_entry)
&& (mc_stat (block_file_vpath, &status) == 0) && (status.st_size != 0))
{
gboolean rc = FALSE;
gboolean rc = TRUE;
FILE *fd;
/* i.e. we have marked block */
if (mark)
rc = edit_block_delete_cmd (edit);
if (!rc)
if (rc)
{
off_t ins_len;