Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fontconfig
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
131
Issues
131
List
Boards
Labels
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fontconfig
fontconfig
Commits
c014142a
Commit
c014142a
authored
May 03, 2008
by
Keith Packard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --all flag to fc-match to show the untrimmed list. Bug 13018.
parent
8415442f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
fc-match/fc-match.c
fc-match/fc-match.c
+12
-6
No files found.
fc-match/fc-match.c
View file @
c014142a
...
...
@@ -50,6 +50,7 @@
#include <getopt.h>
static
const
struct
option
longopts
[]
=
{
{
"sort"
,
0
,
0
,
's'
},
{
"all"
,
0
,
0
,
'a'
},
{
"version"
,
0
,
0
,
'V'
},
{
"verbose"
,
0
,
0
,
'v'
},
{
"help"
,
0
,
0
,
'?'
},
...
...
@@ -65,7 +66,7 @@ extern int optind, opterr, optopt;
static
void
usage
(
char
*
program
)
{
#if HAVE_GETOPT_LONG
fprintf
(
stderr
,
"usage: %s [-svV?] [--sort] [--verbose] [--version] [--help] [pattern]
\n
"
,
fprintf
(
stderr
,
"usage: %s [-svV?] [--sort] [--
all] [--
verbose] [--version] [--help] [pattern]
\n
"
,
program
);
#else
fprintf
(
stderr
,
"usage: %s [-svV?] [pattern]
\n
"
,
...
...
@@ -75,11 +76,13 @@ static void usage (char *program)
fprintf
(
stderr
,
"
\n
"
);
#if HAVE_GETOPT_LONG
fprintf
(
stderr
,
" -s, --sort display sorted list of matches
\n
"
);
fprintf
(
stderr
,
" -a, --all display unpruned sorted list of matches
\n
"
);
fprintf
(
stderr
,
" -v, --verbose display entire font pattern
\n
"
);
fprintf
(
stderr
,
" -V, --version display font config version and exit
\n
"
);
fprintf
(
stderr
,
" -?, --help display this help and exit
\n
"
);
#else
fprintf
(
stderr
,
" -s, (sort) display sorted list of matches
\n
"
);
fprintf
(
stderr
,
" -a (all) display unpruned sorted list of matches
\n
"
);
fprintf
(
stderr
,
" -v (verbose) display entire font pattern
\n
"
);
fprintf
(
stderr
,
" -V (version) display font config version and exit
\n
"
);
fprintf
(
stderr
,
" -? (help) display this help and exit
\n
"
);
...
...
@@ -91,7 +94,7 @@ int
main
(
int
argc
,
char
**
argv
)
{
int
verbose
=
0
;
int
sort
=
0
;
int
sort
=
0
,
all
=
0
;
int
i
;
FcFontSet
*
fs
;
FcPattern
*
pat
;
...
...
@@ -100,12 +103,15 @@ main (int argc, char **argv)
int
c
;
#if HAVE_GETOPT_LONG
while
((
c
=
getopt_long
(
argc
,
argv
,
"sVv?"
,
longopts
,
NULL
))
!=
-
1
)
while
((
c
=
getopt_long
(
argc
,
argv
,
"
a
sVv?"
,
longopts
,
NULL
))
!=
-
1
)
#else
while
((
c
=
getopt
(
argc
,
argv
,
"sVv?"
))
!=
-
1
)
while
((
c
=
getopt
(
argc
,
argv
,
"
a
sVv?"
))
!=
-
1
)
#endif
{
switch
(
c
)
{
case
'a'
:
all
=
1
;
break
;
case
's'
:
sort
=
1
;
break
;
...
...
@@ -143,11 +149,11 @@ main (int argc, char **argv)
fs
=
FcFontSetCreate
();
if
(
sort
)
if
(
sort
||
all
)
{
FcFontSet
*
font_patterns
;
int
j
;
font_patterns
=
FcFontSort
(
0
,
pat
,
FcTrue
,
0
,
&
result
);
font_patterns
=
FcFontSort
(
0
,
pat
,
all
?
FcFalse
:
FcTrue
,
0
,
&
result
);
for
(
j
=
0
;
j
<
font_patterns
->
nfont
;
j
++
)
{
...
...
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