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
130
Issues
130
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
Hide 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 @@
...
@@ -50,6 +50,7 @@
#include <getopt.h>
#include <getopt.h>
static
const
struct
option
longopts
[]
=
{
static
const
struct
option
longopts
[]
=
{
{
"sort"
,
0
,
0
,
's'
},
{
"sort"
,
0
,
0
,
's'
},
{
"all"
,
0
,
0
,
'a'
},
{
"version"
,
0
,
0
,
'V'
},
{
"version"
,
0
,
0
,
'V'
},
{
"verbose"
,
0
,
0
,
'v'
},
{
"verbose"
,
0
,
0
,
'v'
},
{
"help"
,
0
,
0
,
'?'
},
{
"help"
,
0
,
0
,
'?'
},
...
@@ -65,7 +66,7 @@ extern int optind, opterr, optopt;
...
@@ -65,7 +66,7 @@ extern int optind, opterr, optopt;
static
void
usage
(
char
*
program
)
static
void
usage
(
char
*
program
)
{
{
#if HAVE_GETOPT_LONG
#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
);
program
);
#else
#else
fprintf
(
stderr
,
"usage: %s [-svV?] [pattern]
\n
"
,
fprintf
(
stderr
,
"usage: %s [-svV?] [pattern]
\n
"
,
...
@@ -75,11 +76,13 @@ static void usage (char *program)
...
@@ -75,11 +76,13 @@ static void usage (char *program)
fprintf
(
stderr
,
"
\n
"
);
fprintf
(
stderr
,
"
\n
"
);
#if HAVE_GETOPT_LONG
#if HAVE_GETOPT_LONG
fprintf
(
stderr
,
" -s, --sort display sorted list of matches
\n
"
);
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, --verbose display entire font pattern
\n
"
);
fprintf
(
stderr
,
" -V, --version display font config version and exit
\n
"
);
fprintf
(
stderr
,
" -V, --version display font config version and exit
\n
"
);
fprintf
(
stderr
,
" -?, --help display this help and exit
\n
"
);
fprintf
(
stderr
,
" -?, --help display this help and exit
\n
"
);
#else
#else
fprintf
(
stderr
,
" -s, (sort) display sorted list of matches
\n
"
);
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 (verbose) display entire font pattern
\n
"
);
fprintf
(
stderr
,
" -V (version) display font config version and exit
\n
"
);
fprintf
(
stderr
,
" -V (version) display font config version and exit
\n
"
);
fprintf
(
stderr
,
" -? (help) display this help and exit
\n
"
);
fprintf
(
stderr
,
" -? (help) display this help and exit
\n
"
);
...
@@ -91,7 +94,7 @@ int
...
@@ -91,7 +94,7 @@ int
main
(
int
argc
,
char
**
argv
)
main
(
int
argc
,
char
**
argv
)
{
{
int
verbose
=
0
;
int
verbose
=
0
;
int
sort
=
0
;
int
sort
=
0
,
all
=
0
;
int
i
;
int
i
;
FcFontSet
*
fs
;
FcFontSet
*
fs
;
FcPattern
*
pat
;
FcPattern
*
pat
;
...
@@ -100,12 +103,15 @@ main (int argc, char **argv)
...
@@ -100,12 +103,15 @@ main (int argc, char **argv)
int
c
;
int
c
;
#if HAVE_GETOPT_LONG
#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
#else
while
((
c
=
getopt
(
argc
,
argv
,
"sVv?"
))
!=
-
1
)
while
((
c
=
getopt
(
argc
,
argv
,
"
a
sVv?"
))
!=
-
1
)
#endif
#endif
{
{
switch
(
c
)
{
switch
(
c
)
{
case
'a'
:
all
=
1
;
break
;
case
's'
:
case
's'
:
sort
=
1
;
sort
=
1
;
break
;
break
;
...
@@ -143,11 +149,11 @@ main (int argc, char **argv)
...
@@ -143,11 +149,11 @@ main (int argc, char **argv)
fs
=
FcFontSetCreate
();
fs
=
FcFontSetCreate
();
if
(
sort
)
if
(
sort
||
all
)
{
{
FcFontSet
*
font_patterns
;
FcFontSet
*
font_patterns
;
int
j
;
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
++
)
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