diff options
| author | Glenn Morris | 2008-05-21 04:00:33 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-05-21 04:00:33 +0000 |
| commit | a2979e8edd63ed8eaac56d3bc3f5b476232a5e14 (patch) | |
| tree | 6efa6e0a4d8b2eb7616713833cd3f9e4acb06cfb /src | |
| parent | 405a1278136502b97a8d899418979100b7f5b7ac (diff) | |
| download | emacs-a2979e8edd63ed8eaac56d3bc3f5b476232a5e14.tar.gz emacs-a2979e8edd63ed8eaac56d3bc3f5b476232a5e14.zip | |
Seiji Zenitani <zenitani at mac.com>
Ryo Yoshitake <ryo at shiftmode.net>
(w32_frame_parm_handlers): A null handler for x_set_alpha.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 20 | ||||
| -rw-r--r-- | src/w32fns.c | 3 |
2 files changed, 20 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7b9f9931d89..ddcbc93d6f7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2008-05-21 Seiji Zenitani <zenitani@mac.com> | ||
| 2 | Ryo Yoshitake <ryo@shiftmode.net> | ||
| 3 | |||
| 4 | * frame.c (Qalpha): Add a new frame parameter `alpha'. | ||
| 5 | (Vframe_alpha_lower_limit) : New variable. | ||
| 6 | (x_set_alpha): Add function. | ||
| 7 | |||
| 8 | * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them. | ||
| 9 | |||
| 10 | * xfns.c (x-create-frame, Qalpha): | ||
| 11 | Initialize the frame parameter `alpha'. | ||
| 12 | * xterm.c (x_set_frame_alpha): Add function. | ||
| 13 | |||
| 14 | * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha. | ||
| 15 | * w32fns.c (w32_frame_parm_handlers): Likewise. | ||
| 16 | |||
| 1 | 2008-05-20 Jason Rumney <jasonr@gnu.org> | 17 | 2008-05-20 Jason Rumney <jasonr@gnu.org> |
| 2 | 18 | ||
| 3 | * w32font.c (add_font_entity_to_list): Don't add non-opentype | 19 | * w32font.c (add_font_entity_to_list): Don't add non-opentype |
| @@ -84,10 +100,10 @@ | |||
| 84 | (ftfont_lookup_cache, ftfont_get_charset): New functions. | 100 | (ftfont_lookup_cache, ftfont_get_charset): New functions. |
| 85 | (ftfont_spec_pattern): New argument fc_charset_idx. | 101 | (ftfont_spec_pattern): New argument fc_charset_idx. |
| 86 | Check registry more rigidly. Change callers. | 102 | Check registry more rigidly. Change callers. |
| 87 | (ftfont_open, ftfont_close, ftfont_has_char): Adjustd for the | 103 | (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the |
| 88 | change of :font-entity property of the font. | 104 | change of :font-entity property of the font. |
| 89 | 105 | ||
| 90 | * xftfont.c (xftfont_open): Ajuste for the change of :font-entity | 106 | * xftfont.c (xftfont_open): Adjust for the change of :font-entity |
| 91 | property of the font. | 107 | property of the font. |
| 92 | 108 | ||
| 93 | 2008-05-18 Juanma Barranquero <lekktu@gmail.com> | 109 | 2008-05-18 Juanma Barranquero <lekktu@gmail.com> |
diff --git a/src/w32fns.c b/src/w32fns.c index c79bb3eb9d7..77355a2c62f 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -8922,7 +8922,8 @@ frame_parm_handler w32_frame_parm_handlers[] = | |||
| 8922 | x_set_fringe_width, | 8922 | x_set_fringe_width, |
| 8923 | 0, /* x_set_wait_for_wm, */ | 8923 | 0, /* x_set_wait_for_wm, */ |
| 8924 | x_set_fullscreen, | 8924 | x_set_fullscreen, |
| 8925 | x_set_font_backend | 8925 | x_set_font_backend, |
| 8926 | 0 /* x_set_alpha, */ | ||
| 8926 | }; | 8927 | }; |
| 8927 | 8928 | ||
| 8928 | void | 8929 | void |