Commit e750fe68 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

another cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2187 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 4564170c
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment