Unverified Kaydet (Commit) f4cd60ce authored tarafından elextr's avatar elextr Kaydeden (comit) GitHub

Fix line breaking with multibyte characters

Fixes #1958 

Also replace GDK_space with ASCII space, its searching for that, not the keycode (which just happens to have the same value, lucky).
üst 0b75601a
......@@ -556,12 +556,12 @@ static void check_line_breaking(GeanyEditor *editor, gint pos)
return;
/* look for the last space before line_break_column */
pos = MIN(pos, lstart + get_project_pref(line_break_column));
pos = sci_get_position_from_col(sci, lstart, get_project_pref(line_break_column));
while (pos > lstart)
{
c = sci_get_char_at(sci, --pos);
if (c == GDK_space)
if (c == ' ')
{
gint diff, last_pos, last_col;
......
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