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
380a662a
Kaydet (Commit)
380a662a
authored
Eki 12, 2016
tarafından
Jiří Techet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lregex: some simple syncs
üst
ca162241
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
23 deletions
+34
-23
lregex.c
ctags/main/lregex.c
+34
-23
No files found.
ctags/main/lregex.c
Dosyayı görüntüle @
380a662a
...
...
@@ -199,18 +199,16 @@ static bool parseTagRegex (
*
name
=
scanSeparators
(
regexp
);
if
(
*
regexp
==
'\0'
)
printf
(
"regex: empty regexp
\n
"
);
error
(
WARNING
,
"empty regexp
"
);
else
if
(
**
name
!=
separator
)
printf
(
"regex: %s: incomplete regexp
\n
"
,
regexp
);
error
(
WARNING
,
"%s: incomplete regexp
"
,
regexp
);
else
{
char
*
const
third
=
scanSeparators
(
*
name
);
if
(
**
name
==
'\0'
)
printf
(
"regex: %s: regexp missing name pattern
\n
"
,
regexp
);
if
((
*
name
)
[
strlen
(
*
name
)
-
1
]
==
'\\'
)
printf
(
"regex: error in name pattern:
\"
%s
\"\n
"
,
*
name
);
if
(
**
name
!=
'\0'
&&
(
*
name
)
[
strlen
(
*
name
)
-
1
]
==
'\\'
)
error
(
WARNING
,
"error in name pattern:
\"
%s
\"
"
,
*
name
);
if
(
*
third
!=
separator
)
printf
(
"regex: %s: regexp missing final separator
\n
"
,
regexp
);
error
(
WARNING
,
"%s: regexp missing final separator
"
,
regexp
);
else
{
char
*
const
fourth
=
scanSeparators
(
third
);
...
...
@@ -326,8 +324,8 @@ static void parseKinds (
*
description
=
NULL
;
if
(
kinds
==
NULL
||
kinds
[
0
]
==
'\0'
)
{
*
kind
=
'r'
;
*
kindName
=
eStrdup
(
"regex"
);
*
kind
=
KIND_REGEX_DEFAULT
;
*
kindName
=
eStrdup
(
KIND_REGEX_DEFAULT_LONG
);
}
else
if
(
kinds
[
0
]
!=
'\0'
)
{
...
...
@@ -335,11 +333,11 @@ static void parseKinds (
if
(
k
[
0
]
!=
','
&&
(
k
[
1
]
==
','
||
k
[
1
]
==
'\0'
))
*
kind
=
*
k
++
;
else
*
kind
=
'r'
;
*
kind
=
KIND_REGEX_DEFAULT
;
if
(
*
k
==
','
)
++
k
;
if
(
k
[
0
]
==
'\0'
)
*
kindName
=
eStrdup
(
"regex"
);
*
kindName
=
eStrdup
(
KIND_REGEX_DEFAULT_LONG
);
else
{
const
char
*
const
comma
=
strchr
(
k
,
','
);
...
...
@@ -377,13 +375,13 @@ static void processLanguageRegex (const langType language,
else
if
(
parameter
[
0
]
!=
'@'
)
addLanguageRegex
(
language
,
parameter
);
else
if
(
!
doesFileExist
(
parameter
+
1
))
printf
(
"regex: cannot open regex file
\n
"
);
error
(
WARNING
,
"cannot open regex file
"
);
else
{
const
char
*
regexfile
=
parameter
+
1
;
MIO
*
const
mio
=
mio_new_file
(
regexfile
,
"r"
);
if
(
mio
==
NULL
)
printf
(
"regex: %s
\n
"
,
regexfile
);
error
(
WARNING
|
PERROR
,
"%s
"
,
regexfile
);
else
{
vString
*
const
regex
=
vStringNew
();
...
...
@@ -468,7 +466,7 @@ static void matchCallbackPattern (
}
static
bool
matchRegexPattern
(
const
vString
*
const
line
,
const
regexPattern
*
const
patbuf
)
const
regexPattern
*
const
patbuf
)
{
bool
result
=
false
;
GMatchInfo
*
minfo
;
...
...
@@ -541,11 +539,10 @@ extern void addTagRegex (
}
}
extern
void
addCallbackRegex
(
const
langType
language
CTAGS_ATTR_UNUSED
,
const
char
*
const
regex
CTAGS_ATTR_UNUSED
,
const
char
*
const
flags
CTAGS_ATTR_UNUSED
,
const
regexCallback
callback
CTAGS_ATTR_UNUSED
)
extern
void
addCallbackRegex
(
const
langType
language
CTAGS_ATTR_UNUSED
,
const
char
*
const
regex
CTAGS_ATTR_UNUSED
,
const
char
*
const
flags
CTAGS_ATTR_UNUSED
,
const
regexCallback
callback
CTAGS_ATTR_UNUSED
)
{
Assert
(
regex
!=
NULL
);
if
(
regexAvailable
)
...
...
@@ -576,7 +573,7 @@ extern void addLanguageRegex (
*/
extern
bool
processRegexOption
(
const
char
*
const
option
,
const
char
*
const
parameter
CTAGS_ATTR_UNUSED
)
const
char
*
const
parameter
CTAGS_ATTR_UNUSED
)
{
bool
handled
=
false
;
const
char
*
const
dash
=
strchr
(
option
,
'-'
);
...
...
@@ -648,9 +645,23 @@ extern void freeRegexResources (void)
SetUpper
=
-
1
;
}
/*
Check for broken regcomp() on Cygwin
*/
/*
Return true if available.
*/
extern
bool
checkRegex
(
void
)
{
/* not needed now we have GRegex */
return
true
;
/* not needed with GRegex */
#if 0 /*defined (CHECK_REGCOMP)*/
{
/* Check for broken regcomp() on Cygwin */
regex_t patbuf;
int errcode;
if (regcomp (&patbuf, "/hello/", 0) != 0)
error (WARNING, "Disabling broken regex");
else
regexAvailable = true;
}
#else
/* We are using bundled regex engine. */
regexAvailable
=
true
;
#endif
return
regexAvailable
;
}
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