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
f90ebafe
Kaydet (Commit)
f90ebafe
authored
Agu 04, 2017
tarafından
Matthew Brush
Kaydeden (comit)
Matthew Brush
Agu 04, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve Scintilla status messages output
üst
6d663cbb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
5 deletions
+26
-5
sciwrappers.c
src/sciwrappers.c
+26
-5
No files found.
src/sciwrappers.c
Dosyayı görüntüle @
f90ebafe
...
...
@@ -43,6 +43,7 @@
#ifndef NDEBUG
sptr_t
sci_send_message_internal
(
const
gchar
*
file
,
guint
line
,
ScintillaObject
*
sci
,
guint
msg
,
uptr_t
wparam
,
sptr_t
lparam
)
{
...
...
@@ -55,12 +56,32 @@ sptr_t sci_send_message_internal (const gchar *file, guint line, ScintillaObject
if
(
status
!=
0
)
{
static
const
gchar
*
fmt
=
"%s:%u: scintilla message '%u' failed "
"on instance '%p' with wParam='%llu' and lParam='%llu'"
;
if
(
status
<
SC_STATUS_WARN_START
)
g_critical
(
fmt
,
file
,
line
,
msg
,
(
gpointer
)
sci
,
wparam
,
lparam
);
static
const
gchar
*
fmt
=
"%s:%u: scintilla has non-zero status "
"code '%d' after sending message '%u' to instance '%p' with "
"wParam='%llu' and lParam='%llu': %s"
;
const
gchar
*
sub_msg
=
"unknown"
;
switch
(
status
)
{
case
SC_STATUS_FAILURE
:
sub_msg
=
"generic failure"
;
break
;
case
SC_STATUS_BADALLOC
:
sub_msg
=
"memory is exhausted"
;
break
;
case
SC_STATUS_WARN_REGEX
:
sub_msg
=
"regular expression is invalid"
;
break
;
default:
if
(
status
>=
SC_STATUS_WARN_START
)
sub_msg
=
"unknown warning"
;
else
sub_msg
=
"unknown failure"
;
break
;
}
if
(
status
>=
SC_STATUS_WARN_START
)
g_warning
(
fmt
,
file
,
line
,
status
,
msg
,
(
gpointer
)
sci
,
wparam
,
lparam
,
sub_msg
);
else
g_
warning
(
fmt
,
file
,
line
,
msg
,
(
gpointer
)
sci
,
wparam
,
lparam
);
g_
critical
(
fmt
,
file
,
line
,
status
,
msg
,
(
gpointer
)
sci
,
wparam
,
lparam
,
sub_msg
);
}
return
result
;
...
...
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