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
89458937
Commit
89458937
authored
May 14, 2004
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fw32_define_rgb_color): Avoid XSET.
parent
08020f9a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
src/ChangeLog
src/ChangeLog
+8
-4
src/w32fns.c
src/w32fns.c
+2
-2
No files found.
src/ChangeLog
View file @
89458937
2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
* w32fns.c (Fw32_define_rgb_color): Avoid XSET.
2004-05-14 Kenichi Handa <handa@m17n.org>
* ccl.c (Fccl_execute_on_string): Fix setting elements of STATUS.
...
...
@@ -7,7 +11,7 @@
* lisp.h (Vx_resource_name, Vx_resource_class): Move from xfns.c
section to frame.c section.
(Fxw_display_color_p, Fx_file_dialog): Declare if
HAVE_WINDOW_SYSTEM defined.
HAVE_WINDOW_SYSTEM defined.
* macfns.c (Fx_create_frame): Fix int/Lisp_Object mixup.
* macmenu.c (set_frame_menubar): Use NILP to test a lisp value.
* macterm.c (mac_get_emulated_btn, mac_event_to_emacs_modifiers)
...
...
@@ -16,8 +20,8 @@
(mac_check_for_quit_char): Fix pointer/Lisp_Object mixup.
* macterm.h (struct frame, struct face, struct image)
(display_x_get_resource, Fx_display_color_p)
(Fx_display_grayscale_p, Fx_display_planes, x_free_gcs):
Add
prototypes.
(Fx_display_grayscale_p, Fx_display_planes, x_free_gcs):
Add
prototypes.
2004-05-14 Kim F. Storm <storm@cua.dk>
...
...
@@ -1555,7 +1559,7 @@
2004-02-09 Sam Steingold <sds@gnu.org>
* w32term.c (w32_draw_fringe_bitmap): Fix
ed
a typo in the last patch.
* w32term.c (w32_draw_fringe_bitmap): Fix a typo in the last patch.
2004-02-09 Kim F. Storm <storm@cua.dk>
...
...
src/w32fns.c
View file @
89458937
/* Graphical user interface functions for the Microsoft W32 API.
Copyright (C) 1989, 92, 93, 94, 95,
19
96,
19
97,
19
98, 1999, 2000, 200
1
Copyright (C) 1989, 92, 93, 94, 95, 96, 97, 98, 1999, 2000,
01,
200
4
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -465,7 +465,7 @@ if the entry is new. */)
CHECK_NUMBER (blue);
CHECK_STRING (name);
XSET (rgb,
Lisp_Int,
RGB(XUINT (red), XUINT (green), XUINT (blue)));
XSET
INT
(rgb, RGB(XUINT (red), XUINT (green), XUINT (blue)));
BLOCK_INPUT;
...
...
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