]> git.wh0rd.org Git - nano.git/commitdiff
Removing an unneeded and mistaken condition:
authorBenno Schulenberg <bensberg@justemail.net>
Sun, 9 Aug 2015 18:10:13 +0000 (18:10 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sun, 9 Aug 2015 18:10:13 +0000 (18:10 +0000)
if something should be blanked, then both.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5350 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c

index 47b222400a25c7592760b778fd1fc7cf8759cf21..37402dcc5b62357a7865c3db13919f2425f770e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index c376aaa5cd91f6b15a12ab5f59b6b7f3271075ef..03a34ff7165612cd891749a503998116c7fc854c 100644 (file)
@@ -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_statusbar();
+    /* 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();