Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clim-tos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alastair Bridgewater
clim-tos
Commits
8b6e791a
Commit
8b6e791a
authored
15 years ago
by
Andreas Fuchs
Browse files
Options
Downloads
Patches
Plain Diff
spr36163: Fix charsets-missing-from-fontset condition report function.
parent
8e5d61c6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog.n
+5
-0
5 additions, 0 deletions
ChangeLog.n
tk/font.lisp
+3
-4
3 additions, 4 deletions
tk/font.lisp
with
8 additions
and
4 deletions
ChangeLog.n
+
5
−
0
View file @
8b6e791a
...
...
@@ -3,6 +3,11 @@
don't forget to change the version in utils/packages.lisp if you do anything
user visible.
*******************************************************************************
2009-09-09 Andreas Fuchs <afuchs@franz.com>
* tk/font.lisp: Fix the charsets-missing-from-fontset condition report
function. (spr36163)
2009-09-09 Andreas Fuchs <afuchs@franz.com>
* tk-silica/xt-graphics.lisp: Fix vertical alignment offset calculation for :bottom
...
...
This diff is collapsed.
Click to expand it.
tk/font.lisp
+
3
−
4
View file @
8b6e791a
...
...
@@ -187,11 +187,10 @@
(
define-condition
charsets-missing-from-fontset
(
warning
)
((
charsets
:initarg
:charsets
:accessor
charsets-missing-from-fontset-charsets
)
(
created-for
:initarg
:created-for
:accessor
charsets-missing-from-fontset-created
))
(
:report
(
lambda
(
stream
c
)
(
:report
(
lambda
(
c
stream
)
(
format
stream
"Missing charsets:~{ ~A,~} creating fontset for ~A"
(
charsets-missing-from-fontset-charsets
c
)
(
charsets-missing-from-fontset-created
c
)))))
"Couldn't find usable fonts for char sets~:{ ~A,~}"
(
charsets-missing-from-fontset-charsets
c
)))))
(
defmethod
initialize-instance
:after
((
fs
font-set
)
&key
foreign-address
display
base-names
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment