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
5cfc3f20
Kaydet (Commit)
5cfc3f20
authored
May 06, 2015
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #487 from techee/goto_tag_fix
Fix language check in tm_workspace_find()
üst
3973362c
81fb120f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
tm_workspace.c
tagmanager/src/tm_workspace.c
+15
-15
No files found.
tagmanager/src/tm_workspace.c
Dosyayı görüntüle @
5cfc3f20
...
...
@@ -686,7 +686,6 @@ const GPtrArray *tm_workspace_find(const char *name, TMTagType type, TMTagAttrTy
TMTag
**
matches
[
2
];
size_t
len
;
guint
tagCount
[
2
]
=
{
0
,
0
},
tagIter
;
gint
tags_lang
;
if
(
!
name
)
return
NULL
;
...
...
@@ -705,11 +704,11 @@ const GPtrArray *tm_workspace_find(const char *name, TMTagType type, TMTagAttrTy
/* file tags */
if
(
matches
[
0
]
&&
*
matches
[
0
])
{
tags_lang
=
(
*
matches
[
0
])
->
lang
;
for
(
tagIter
=
0
;
tagIter
<
tagCount
[
0
];
++
tagIter
)
{
if
((
type
&
(
*
matches
[
0
])
->
type
)
&&
(
lang
==
-
1
||
tags_lang
==
lang
))
gint
tag_lang
=
(
*
matches
[
0
])
->
lang
;
if
((
type
&
(
*
matches
[
0
])
->
type
)
&&
(
lang
==
-
1
||
tag_lang
==
lang
))
g_ptr_array_add
(
tags
,
*
matches
[
0
]);
if
(
partial
)
{
...
...
@@ -728,20 +727,21 @@ const GPtrArray *tm_workspace_find(const char *name, TMTagType type, TMTagAttrTy
/* global tags */
if
(
matches
[
1
]
&&
*
matches
[
1
])
{
int
tags_lang_alt
=
0
;
tags_lang
=
(
*
matches
[
1
])
->
lang
;
/* tags_lang_alt is used to load C global tags only once for C and C++
* lang = 1 is C++, lang = 0 is C
* if we have lang 0, than accept also lang 1 for C++ */
if
(
tags_lang
==
0
)
/* C or C++ */
tags_lang_alt
=
1
;
else
tags_lang_alt
=
tags_lang
;
/* otherwise just ignore it */
for
(
tagIter
=
0
;
tagIter
<
tagCount
[
1
];
++
tagIter
)
{
gint
tag_lang
=
(
*
matches
[
1
])
->
lang
;
gint
tag_lang_alt
=
0
;
/* tag_lang_alt is used to load C global tags only once for C and C++
* lang = 1 is C++, lang = 0 is C
* if we have lang 0, than accept also lang 1 for C++ */
if
(
tag_lang
==
0
)
/* C or C++ */
tag_lang_alt
=
1
;
else
tag_lang_alt
=
tag_lang
;
/* otherwise just ignore it */
if
((
type
&
(
*
matches
[
1
])
->
type
)
&&
(
lang
==
-
1
||
tag
s_lang
==
lang
||
tags
_lang_alt
==
lang
))
tag
_lang
==
lang
||
tag
_lang_alt
==
lang
))
g_ptr_array_add
(
tags
,
*
matches
[
1
]);
if
(
partial
)
...
...
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