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
fccb8288
Commit
fccb8288
authored
Jan 29, 2001
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(x_draw_row_bitmaps): Delay obtaining HDC to avoid returning without
releasing it.
parent
d4ffda10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/w32term.c
src/w32term.c
+3
-1
No files found.
src/ChangeLog
View file @
fccb8288
2001-01-29 Jason Rumney <jasonr@gnu.org>
w32term.c (x_draw_row_bitmaps): Delay obtaining HDC to avoid
returning without releasing it.
2001-01-29 Kenichi Handa <handa@etl.go.jp>
* w32fns.c (w32_font_match): Allocate three more bytes to regex
...
...
src/w32term.c
View file @
fccb8288
...
...
@@ -898,7 +898,7 @@ x_draw_row_bitmaps (w, row)
enum bitmap_type bitmap;
struct face *face;
int header_line_height = -1;
HDC hdc
= get_frame_dc (f)
;
HDC hdc;
xassert (interrupt_input_blocked);
...
...
@@ -922,6 +922,8 @@ x_draw_row_bitmaps (w, row)
else
bitmap = NO_BITMAP;
hdc = get_frame_dc (f);
/* Clear flags area if no bitmap to draw or if bitmap doesn't fill
the flags area. */
if (bitmap == NO_BITMAP
...
...
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