Merge pull request #2043 from cristicc/feature/diff-lexer-fix

Fix stripping trailing spaces for custom file types using the DIFF lexer.

Fixes #2041.
This commit is contained in:
Colomban Wendling 2019-01-10 21:46:25 +01:00
commit fb11f90ec8

View File

@ -4522,7 +4522,7 @@ void editor_strip_line_trailing_spaces(GeanyEditor *editor, gint line)
gchar ch = sci_get_char_at(editor->sci, i);
/* Diff hunks should keep trailing spaces */
if (sci_get_lexer(editor->sci) == SCLEX_DIFF)
if (editor->document->file_type->id == GEANY_FILETYPES_DIFF)
return;
while ((i >= line_start) && ((ch == ' ') || (ch == '\t')))