Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
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ç
LibreOffice
core
Commits
a944363d
Kaydet (Commit)
a944363d
authored
Agu 07, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
unused return
Change-Id: I1b61151df81c75bf794fbeda967769501026bb05
üst
92c5536c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
hwpeq.cxx
hwpfilter/source/hwpeq.cxx
+4
-6
No files found.
hwpfilter/source/hwpeq.cxx
Dosyayı görüntüle @
a944363d
...
...
@@ -402,8 +402,7 @@ static const hwpeq *lookup_eqn(char *str)
}
/* 첫자만 대문자이거나 전부 대문자면 소문자로 바꾼다. */
static
char
*
make_keyword
(
char
*
keyword
,
const
char
*
token
)
void
make_keyword
(
char
*
keyword
,
const
char
*
token
)
{
assert
(
keyword
);
char
*
ptr
;
...
...
@@ -415,9 +414,8 @@ static char *make_keyword( char *keyword, const char *token)
else
strcpy
(
keyword
,
token
);
if
(
(
token
[
0
]
&
0x80
)
||
islower
(
token
[
0
])
||
strlen
(
token
)
<
2
)
return
keyword
;
if
(
(
token
[
0
]
&
0x80
)
||
islower
(
token
[
0
])
||
strlen
(
token
)
<
2
)
return
;
int
capital
=
isupper
(
keyword
[
1
]);
for
(
ptr
=
keyword
+
2
;
*
ptr
&&
result
;
ptr
++
)
...
...
@@ -434,7 +432,7 @@ static char *make_keyword( char *keyword, const char *token)
ptr
++
;
}
}
return
keyword
;
return
;
}
// token reading function
...
...
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