Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
6a0c2ef9
Kaydet (Commit)
6a0c2ef9
authored
Ock 09, 2019
tarafından
Cristian Ciocaltea
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix stripping trailing spaces for custom file types using the DIFF lexer (#2041)
üst
c113d47e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
editor.c
src/editor.c
+1
-1
No files found.
src/editor.c
Dosyayı görüntüle @
6a0c2ef9
...
@@ -4522,7 +4522,7 @@ void editor_strip_line_trailing_spaces(GeanyEditor *editor, gint line)
...
@@ -4522,7 +4522,7 @@ void editor_strip_line_trailing_spaces(GeanyEditor *editor, gint line)
gchar
ch
=
sci_get_char_at
(
editor
->
sci
,
i
);
gchar
ch
=
sci_get_char_at
(
editor
->
sci
,
i
);
/* Diff hunks should keep trailing spaces */
/* Diff hunks should keep trailing spaces */
if
(
sci_get_lexer
(
editor
->
sci
)
==
SCLEX
_DIFF
)
if
(
editor
->
document
->
file_type
->
id
==
GEANY_FILETYPES
_DIFF
)
return
;
return
;
while
((
i
>=
line_start
)
&&
((
ch
==
' '
)
||
(
ch
==
'\t'
)))
while
((
i
>=
line_start
)
&&
((
ch
==
' '
)
||
(
ch
==
'\t'
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment