]> git.wh0rd.org Git - nano.git/commitdiff
Correctly restoring the settings of NO_HELP and MORE_SPACE.
authorBenno Schulenberg <bensberg@justemail.net>
Sat, 2 Jan 2016 16:33:03 +0000 (16:33 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Sat, 2 Jan 2016 16:33:03 +0000 (16:33 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5522 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index b26611660697732e75a58105e9d67042ccaec01c..622a763faaf02f57b3cea157b8f2fd0b5a52f9e3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
        * src/text.c (do_spell, do_formatter): Plug three tiny memory leaks.
        * src/text.c (do_alt_speller, do_formatter): There is no need here to
        reinitialize the windows; it will be done when polling the keybuffer.
+       * src/winio.c (do_credits): Correctly restore the settings of NO_HELP
+       and MORE_SPACE.
 
 2015-12-31  Benno Schulenberg  <bensberg@justemail.net>
        * src/text.c (do_formatter): Restore the cursor position differently.
index bcf71d15684d080aaad559b6ebcf51aafc37d477..eae0276d68e2300dd3eadd0bafa922a381f37cd0 100644 (file)
@@ -3425,11 +3425,11 @@ void do_credits(void)
     if (kbinput != ERR)
        ungetch(kbinput);
 
-    if (!old_more_space || !old_no_help) {
+    if (!old_more_space)
        UNSET(MORE_SPACE);
+    if (!old_no_help)
        UNSET(NO_HELP);
-       window_init();
-    }
+    window_init();
 
     curs_set(1);
     nodelay(edit, FALSE);