Skip to content

Commit 00972d4

Browse files
red-001nerzhul
authored andcommittedMay 20, 2017
this might fix #5661, needs testing (#5775)
1 parent 673ac55 commit 00972d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/chat.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ u32 ChatBuffer::formatChatLine(const ChatLine& line, u32 cols,
331331
while (frag_length < remaining_in_input &&
332332
frag_length < remaining_in_output)
333333
{
334-
if (isspace(line.text.getString()[in_pos + frag_length]))
334+
if (iswspace(line.text.getString()[in_pos + frag_length]))
335335
space_pos = frag_length;
336336
++frag_length;
337337
}

0 commit comments

Comments
 (0)
Please sign in to comment.