]> git.wh0rd.org Git - nano.git/commitdiff
another cosmetic fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Dec 2004 22:43:23 +0000 (22:43 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Dec 2004 22:43:23 +0000 (22:43 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2187 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c

index 03111f2aca0814beadec4ae7e0bef94ee68e5c1c..2bbf3682a2986a21337debc6e8029a76b10c90d6 100644 (file)
@@ -3645,7 +3645,7 @@ void do_output(int *kbinput, size_t kbinput_len)
 
 #ifndef DISABLE_WRAPPING
        /* If we're wrapping text, we need to call edit_refresh(). */
-       if (!ISSET(NO_WRAP) && (key[0] != '\t' || key_len != 1)) {
+       if (!ISSET(NO_WRAP) && kbinput[i] != '\t') {
            bool do_refresh_save = do_refresh;
 
            do_refresh = do_wrap(current);