Eliding an unneeded variable.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5289 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Benno Schulenberg 2015-07-10 16:00:12 +00:00
parent 93e391eba3
commit ea4b775a3e
2 changed files with 2 additions and 3 deletions

View File

@ -2,6 +2,7 @@
* src/nano.c (delete_opennode): Plug a small memory leak. * src/nano.c (delete_opennode): Plug a small memory leak.
* src/files.c (do_lockfile): Rename a variable; it does not contain * src/files.c (do_lockfile): Rename a variable; it does not contain
the size of the file but the size of the name. the size of the file but the size of the name.
* src/nano.c (do_toggle): Elide an unneeded variable.
2015-07-06 Benno Schulenberg <bensberg@justemail.net> 2015-07-06 Benno Schulenberg <bensberg@justemail.net>
* src/global.c (add_to_sclist), src/help.c (help_init), src/nano.h, * src/global.c (add_to_sclist), src/help.c (help_init), src/nano.h,

View File

@ -1413,7 +1413,6 @@ void allow_pending_sigwinch(bool allow)
void do_toggle(int flag) void do_toggle(int flag)
{ {
bool enabled; bool enabled;
const char *desc;
TOGGLE(flag); TOGGLE(flag);
@ -1457,8 +1456,7 @@ void do_toggle(int flag)
) )
enabled = !enabled; enabled = !enabled;
desc = (char *) _(flagtostr(flag)); statusbar("%s %s", _(flagtostr(flag)), enabled ? _("enabled") : _("disabled"));
statusbar("%s %s", desc, enabled ? _("enabled") : _("disabled"));
} }
#endif /* !NANO_TINY */ #endif /* !NANO_TINY */