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
f0ca50cf
Kaydet (Commit)
f0ca50cf
authored
Ock 03, 2012
tarafından
Nick Treleaven
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix showing Find/Replace regex errors on status bar
üst
308f98a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
search.c
src/search.c
+13
-2
No files found.
src/search.c
Dosyayı görüntüle @
f0ca50cf
...
...
@@ -150,6 +150,8 @@ static void search_close_pid(GPid child_pid, gint status, gpointer user_data);
static
gchar
**
search_get_argv
(
const
gchar
**
argv_prefix
,
const
gchar
*
dir
);
static
GRegex
*
compile_regex
(
const
gchar
*
str
,
gint
sflags
);
static
void
on_find_replace_checkbutton_toggled
(
GtkToggleButton
*
togglebutton
,
gpointer
user_data
);
...
...
@@ -1236,7 +1238,14 @@ on_find_dialog_response(GtkDialog *dialog, gint response, gpointer user_data)
gtk_widget_grab_focus
(
find_dlg
.
entry
);
return
;
}
if
(
settings
.
find_escape_sequences
&&
~
search_data
.
flags
&
SCFIND_REGEXP
)
if
(
search_data
.
flags
&
SCFIND_REGEXP
)
{
GRegex
*
regex
=
compile_regex
(
search_data
.
text
,
search_data
.
flags
);
g_regex_unref
(
regex
);
if
(
!
regex
)
goto
fail
;
}
else
if
(
settings
.
find_escape_sequences
)
{
if
(
!
utils_str_replace_escape
(
search_data
.
text
,
FALSE
))
goto
fail
;
...
...
@@ -1364,8 +1373,10 @@ on_replace_dialog_response(GtkDialog *dialog, gint response, gpointer user_data)
if
(
search_flags_re
&
SCFIND_REGEXP
)
{
GRegex
*
regex
=
compile_regex
(
find
,
search_flags_re
);
g_regex_unref
(
regex
);
/* find escapes will be handled by GRegex */
if
(
!
utils_str_replace_escape
(
replace
,
TRUE
))
if
(
!
regex
||
!
utils_str_replace_escape
(
replace
,
TRUE
))
goto
fail
;
}
else
if
(
search_replace_escape_re
)
...
...
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