]> git.wh0rd.org Git - nano.git/commitdiff
Removing two superfluous conditions.
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 9 Jun 2014 10:28:23 +0000 (10:28 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 9 Jun 2014 10:28:23 +0000 (10:28 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4946 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c

index 01a84eeb9c234fcdcea7b7401f2a999e1b9c2241..2eaee2fa9210085181374e344f70dbd6cdb99506 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2014-06-09  Benno Schulenberg  <bensberg@justemail.net>
+       * src/nano.c (do_input): Remove two superfluous false conditions.
+
 2014-06-09  Mark Majeres  <mark@engine12.com>
        * src/text.c (do_undo, do_redo, add_undo, update_undo, do-wrap):
        Rewrite the line-wrapping code to make use of the existing line-break
index e45dc30ad8f87cb99bdcbfca6e49a77671b7b1af..70e9049f5ae79e4f41614c30d6362b475f9d47d0 100644 (file)
@@ -1646,8 +1646,7 @@ int do_input(bool *meta_key, bool *func_key, bool allow_funcs)
 #ifndef DISABLE_WRAPPING
            /* If we got a shortcut or toggle, and it's not the shortcut
             * for verbatim input, turn off prepending of wrapped text. */
-           if (have_shortcut && (!have_shortcut || s == NULL || s->scfunc !=
-               do_verbatim_input))
+           if (have_shortcut && s->scfunc != do_verbatim_input)
                wrap_reset();
 #endif