[geany/geany] baa88d: Fix broken line breaking on existing lines

elextr git-noreply at xxxxx
Fri Dec 28 06:02:49 UTC 2018


Branch:      refs/heads/master
Author:      elextr <elextr at gmail.com>
Committer:   GitHub <noreply at github.com>
Date:        Fri, 28 Dec 2018 06:02:49 UTC
Commit:      baa88de7078fbbd088bdc4a722a5873191a04750
             https://github.com/geany/geany/commit/baa88de7078fbbd088bdc4a722a5873191a04750

Log Message:
-----------
Fix broken line breaking on existing lines

sci_get_position_from_col() takes line number, not position of start of line.


Modified Paths:
--------------
    src/editor.c

Modified: src/editor.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -556,7 +556,7 @@ static void check_line_breaking(GeanyEditor *editor, gint pos)
 		return;
 
 	/* look for the last space before line_break_column */
-	pos = sci_get_position_from_col(sci, lstart, get_project_pref(line_break_column));
+	pos = sci_get_position_from_col(sci, line, get_project_pref(line_break_column));
 
 	while (pos > lstart)
 	{



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list