Skip to content

Commit

Permalink
Ticket #4540: mcedit: macro deletes text.
Browse files Browse the repository at this point in the history
(edit_user_menu): fix misinterpretation of return value of
edit_block_delete_cmd(). The bug was introduced in
e2e34d8.

Signed-off-by: Andrew Borodin <[email protected]>
  • Loading branch information
Sprite_tm authored and aborodin committed May 22, 2024
1 parent 425938e commit fdacad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/editor/edit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit fdacad8

Please sign in to comment.