Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
68c6a789
Commit
68c6a789
authored
Jan 01, 2004
by
Jason Rumney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(w32_text_out): Use s->font, for consistency with callers.
parent
a3cb3b2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
src/ChangeLog
src/ChangeLog
+5
-0
src/w32term.c
src/w32term.c
+3
-3
No files found.
src/ChangeLog
View file @
68c6a789
2004-01-01 Jason Rumney <jasonr@gnu.org>
* w32term.c (w32_text_out): Use s->font, for consistency with
callers.
2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
* print.c (Ferror_message_string): Add hyperlink in the docstring
...
...
src/w32term.c
View file @
68c6a789
...
...
@@ -1121,9 +1121,9 @@ w32_text_out (s, x, y,chars,nchars)
wchar_t
*
chars
;
int
nchars
;
{
int
charset_dim
=
w32_font_is_double_byte
(
s
->
gc
->
font
)
?
2
:
1
;
if
(
s
->
gc
->
font
->
bdf
)
w32_BDF_TextOut
(
s
->
gc
->
font
->
bdf
,
s
->
hdc
,
int
charset_dim
=
w32_font_is_double_byte
(
s
->
font
)
?
2
:
1
;
if
(
s
->
font
->
bdf
)
w32_BDF_TextOut
(
s
->
font
->
bdf
,
s
->
hdc
,
x
,
y
,
(
char
*
)
chars
,
charset_dim
,
nchars
*
charset_dim
,
0
);
else
if
(
s
->
first_glyph
->
font_type
==
UNICODE_FONT
)
...
...
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