Removing an unneeded and mistaken condition:
if something should be blanked, then both. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5350 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
eac0446c86
commit
ea2b51a41d
|
@ -6,6 +6,7 @@
|
|||
* src/files.c (read_file), src/rcfile.c, src/nano.c (main, usage):
|
||||
Fix compilation with --enable-tiny; file formats are not available
|
||||
then, so option --unix has no place; also add its description.
|
||||
* src/nano.c (finish): Remove an unneeded and mistaken condition.
|
||||
|
||||
2015-08-08 Benno Schulenberg <bensberg@justemail.net>
|
||||
* src/winio.c (display_string): For some reason the reallocation done
|
||||
|
|
|
@ -614,12 +614,10 @@ void say_there_is_no_help(void)
|
|||
/* Make nano exit gracefully. */
|
||||
void finish(void)
|
||||
{
|
||||
/* Blank the statusbar (and shortcut list, if applicable), and move
|
||||
* the cursor to the last line of the screen. */
|
||||
if (!ISSET(NO_HELP))
|
||||
blank_bottombars();
|
||||
else
|
||||
/* Blank the statusbar and (if applicable) the shortcut list,
|
||||
* and move the cursor to the last line of the screen. */
|
||||
blank_statusbar();
|
||||
blank_bottombars();
|
||||
wrefresh(bottomwin);
|
||||
endwin();
|
||||
|
||||
|
|
Loading…
Reference in New Issue