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
8c3b00cb
Commit
8c3b00cb
authored
Jul 26, 2001
by
Andrew Innes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(x_display_list): New variable.
(w32_term_init): Set it.
parent
8911aff3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
src/ChangeLog
src/ChangeLog
+7
-0
src/w32term.c
src/w32term.c
+5
-0
No files found.
src/ChangeLog
View file @
8c3b00cb
2001-07-26 Andrew Innes <andrewi@gnu.org>
* w32term.c (x_display_list): New variable.
(w32_term_init): Set it.
* w32term.h (x_display_list): New extern.
2001-07-26 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (resize_mini_window): Give up when inhibit-redisplay
...
...
src/w32term.c
View file @
8c3b00cb
...
...
@@ -192,6 +192,7 @@ extern Lisp_Object Vwindow_system;
/* This is display since w32 does not support multiple ones. */
struct w32_display_info one_w32_display_info;
struct w32_display_info *x_display_list;
/* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
one for each element of w32_display_list and in the same order.
...
...
@@ -10196,6 +10197,10 @@ w32_term_init (display_name, xrm_option, resource_name)
w32_initialize_display_info (display_name);
dpyinfo = &one_w32_display_info;
/* Put this display on the chain. */
dpyinfo->next = x_display_list;
x_display_list = dpyinfo;
hdc = GetDC (GetDesktopWindow ());
...
...
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