Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dee8cd43
Commit
dee8cd43
authored
Aug 01, 2008
by
Juanma Barranquero
Browse files
* xfaces.c (Fx_load_color_file): Fix previous change;
it is #ifdef WINDOWSNT, not WINDOWS_NT.
parent
6d496c76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
14 deletions
+17
-14
src/ChangeLog
src/ChangeLog
+14
-11
src/xfaces.c
src/xfaces.c
+3
-3
No files found.
src/ChangeLog
View file @
dee8cd43
2008-08-01 Juanma Barranquero <lekktu@gmail.com>
* xfaces.c (Fx_load_color_file): Fix previous change;
it is #ifdef WINDOWSNT, not WINDOWS_NT.
2008-08-01 Michael Albinus <michael.albinus@gmx.de>
* dbusbind.c (xd_read_message): Handle D-Bus error messages.
...
...
@@ -8,8 +13,7 @@
2008-08-01 Chong Yidong <cyd@stupidchicken.com>
* nsfns.m (ns_frame_parm_handlers): Add empty entry for
x_set_alpha.
* nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
* nsterm.m (EmacsApp -application:openFiles:): GNUStep does not
define NSApplicationDelegateReplySuccess.
...
...
@@ -28,8 +32,8 @@
2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
Warning clearing and clean-up in NS port.
* keyboard.h (xmalloc_widget_value, digest_single_submenu):
Add
prototypes.
* keyboard.h (xmalloc_widget_value, digest_single_submenu):
Add
prototypes.
* nsgui.h (FACE_DEFAULT): Remove, unused.
(XGCValues): Change colors to unsigned long.
* nsterm.h (EmacsApp): Add declaration of all methods implemented in
...
...
@@ -63,11 +67,11 @@
(ns_list_fonts): Remove, unused.
(ns_font_to_xlfd): Make static. Cast result of UTF8String.
(ns_fontname_to_xlfd): Make static.
* w32menu.c (xmalloc_widget_value, digest_single_submenu):
Remove
prototypes (now in keyboard.h).
* w32menu.c (xmalloc_widget_value, digest_single_submenu):
Remove
prototypes (now in keyboard.h).
(next_menubar_widget_id): Remove, unused.
* xmenu.c (xmalloc_widget_value, digest_single_submenu):
Remove
prototypes (now in keyboard.h).
* xmenu.c (xmalloc_widget_value, digest_single_submenu):
Remove
prototypes (now in keyboard.h).
* xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
...
...
@@ -76,8 +80,8 @@
(floatfns.o): Depend on syssignal.h.
(term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
* systty.h: Fix previous change that removed BSD_TERMIOS.
Add
comments to #ifdefs.
* systty.h: Fix previous change that removed BSD_TERMIOS.
Add
comments to #ifdefs.
2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
...
...
@@ -14138,7 +14142,6 @@
2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* macfns.c (mac_window): Replace WindowPtr with WindowRef.
* macgui.h: Replace WindowPtr with WindowRef.
* macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
...
...
src/xfaces.c
View file @
dee8cd43
...
...
@@ -6600,10 +6600,10 @@ where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
if (name[num] == '\n')
name[num] = 0;
cmap = Fcons (Fcons (build_string (name),
#ifdef WINDOWS
_
NT
make_number
(
RGB
(
red
,
green
,
blue
))),
#ifdef WINDOWSNT
make_number (RGB (red, green, blue))),
#else
make_number
((
red
<<
16
)
|
(
green
<<
8
)
|
blue
)),
make_number ((red << 16) | (green << 8) | blue)),
#endif
cmap);
}
...
...
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