Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fontconfig
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
152
Issues
152
List
Boards
Labels
Service Desk
Milestones
Merge Requests
22
Merge Requests
22
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fontconfig
fontconfig
Commits
bbbaac36
Commit
bbbaac36
authored
Feb 22, 2002
by
Keith Packard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fontconfig: some config file parsing mistakes
parent
a398554a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
12 deletions
+7
-12
src/fcfreetype.c
src/fcfreetype.c
+1
-1
src/fcint.h
src/fcint.h
+0
-9
src/fcxml.c
src/fcxml.c
+6
-2
No files found.
src/fcfreetype.c
View file @
bbbaac36
...
...
@@ -154,7 +154,7 @@ FcFreeTypeQuery (const FcChar8 *file,
if
(
!
FcPatternAddString
(
pat
,
FC_SOURCE
,
(
FcChar8
*
)
"FreeType"
))
goto
bail1
;
#if
0
#if
1
if
((
face
->
face_flags
&
FT_FACE_FLAG_FIXED_WIDTH
)
!=
0
)
if
(
!
FcPatternAddInteger
(
pat
,
FC_SPACING
,
FC_MONO
))
goto
bail1
;
...
...
src/fcint.h
View file @
bbbaac36
...
...
@@ -327,9 +327,6 @@ FcValuePrint (FcValue v);
void
FcValueListPrint
(
FcValueList
*
l
);
void
FcPatternPrint
(
FcPattern
*
p
);
void
FcOpPrint
(
FcOp
op
);
...
...
@@ -433,12 +430,6 @@ FcMemFree (int kind, int size);
FcBool
FcNameBool
(
FcChar8
*
v
,
FcBool
*
result
);
FcBool
FcStrBufChar
(
FcStrBuf
*
buf
,
FcChar8
c
);
FcBool
FcStrBufString
(
FcStrBuf
*
buf
,
const
FcChar8
*
s
);
/* fcpat.c */
void
FcValueListDestroy
(
FcValueList
*
l
);
...
...
src/fcxml.c
View file @
bbbaac36
/*
* $XFree86: xc/lib/fontconfig/src/fcxml.c,v 1.
3 2002/02/18 22:29:28
keithp Exp $
* $XFree86: xc/lib/fontconfig/src/fcxml.c,v 1.
4 2002/02/20 00:32:30
keithp Exp $
*
* Copyright 2002 Keith Packard, member of The XFree86 Project, Inc.
*
...
...
@@ -1097,9 +1097,13 @@ FcPopExpr (FcConfigParse *parse)
break
;
case
FcVStackString
:
case
FcVStackFamily
:
expr
=
FcExprCreateString
(
vstack
->
u
.
string
);
break
;
case
FcVStackField
:
expr
=
FcExprCreateField
((
char
*
)
vstack
->
u
.
string
);
break
;
case
FcVStackConstant
:
expr
=
FcExprCreate
String
(
vstack
->
u
.
string
);
expr
=
FcExprCreate
Const
(
vstack
->
u
.
string
);
break
;
case
FcVStackPrefer
:
case
FcVStackAccept
:
...
...
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