]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 21 Aug 2006 14:04:28 +0000 (14:04 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 21 Aug 2006 14:04:28 +0000 (14:04 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3844 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c

index 08850822611919a654116506945e631e3c720fce..8e8dd6d69ef3c2a29950945d6b18f37e95621834 100644 (file)
@@ -526,13 +526,13 @@ void print_view_warning(void)
 /* What we do when we're all set to exit. */
 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();
-
     wrefresh(bottomwin);
-
     endwin();
 
     /* Restore the old terminal settings. */
@@ -1012,7 +1012,8 @@ RETSIGTYPE do_suspend(int signal)
     disable_mouse_support();
 #endif
 
-    /* Blank the screen, and move the cursor to the last line of it. */
+    /* Blank the screen, and move the cursor to the last line of the
+     * screen. */
     erase();
     move(LINES - 1, 0);
     refresh();