Ticket #1844 (new defect) — at Version 1

Opened 15 years ago

Last modified 14 years ago

UNneeded-goto-in-user_menu

Reported by: vit_r Owned by: vit_r
Priority: trivial Milestone: 4.7.0
Component: mcedit Version: 4.7.0-pre4
Keywords: Cc:
Blocked By: Blocking:
Branch state: Votes for changeset:

Description (last modified by slavazanko) (diff)

simplifying the code in edit/edit.c: user_menu () {}

Change History

comment:1 Changed 15 years ago by slavazanko

  • Description modified (diff)

Please, don't use constructions like:

if (fd = fopen (block_file, "w"))

use instread:

fd = fopen (block_file, "w");
if (fd)

this much better and simplest to understood.

Note: See TracTickets for help on using tickets.