diff options
| author | Eli Zaretskii | 2010-07-03 17:42:02 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-07-03 17:42:02 +0300 |
| commit | f4e8a59cc198809f258d46c4af161dbf452c56c3 (patch) | |
| tree | fefd449863aa84c249d4097a29fd3bd37a6e7db6 /src/ChangeLog | |
| parent | a52a00a3d745844419d93209ddec1c4236aed22a (diff) | |
| parent | 76ea4cc96bbf9db3ed9c0f6785c85f1880c61c08 (diff) | |
| download | emacs-f4e8a59cc198809f258d46c4af161dbf452c56c3.tar.gz emacs-f4e8a59cc198809f258d46c4af161dbf452c56c3.zip | |
Fix menu bar and colors on MS-DOS.
msdos.c (IT_set_frame_parameters): Set menu-bar-lines
according to menu-bar-mode, if not set in the frame parameters
or in default-frame-alist. Fix setting of colors in frames
other than the initial one. Fix reversal of colors when
`reverse' is specified in the frame parameters. Call
update_face_from_frame_parameter instead of
internal-set-lisp-face-attribute. Initialize screen colors
from initial_screen_colors[] when f->default_face_done_p is
zero, instead of depending on being called with
default-frame-alist as the alist argument.
xfaces.c (update_face_from_frame_parameter): Move out of
HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
with HAVE_WINDOW_SYSTEM.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 68e3d7aae4e..63bd31f5c83 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,22 @@ | |||
| 1 | 2010-07-03 Eli Zaretskii <eliz@gnu.org> | 1 | 2010-07-03 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * msdos.c (IT_set_frame_parameters): Fix setting of colors in | ||
| 4 | frames other than the initial one. Fix reversal of colors when | ||
| 5 | `reverse' is specified in the frame parameters. Call | ||
| 6 | update_face_from_frame_parameter instead of | ||
| 7 | internal-set-lisp-face-attribute. Initialize screen colors from | ||
| 8 | initial_screen_colors[] when f->default_face_done_p is zero, | ||
| 9 | instead of depending on being called with default-frame-alist as | ||
| 10 | the alist argument. | ||
| 11 | |||
| 12 | * xfaces.c (update_face_from_frame_parameter): Move out of | ||
| 13 | HAVE_WINDOW_SYSTEM portion. Condition window-system only parts | ||
| 14 | with HAVE_WINDOW_SYSTEM. | ||
| 15 | |||
| 16 | * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according | ||
| 17 | to menu-bar-mode, if not set in the frame parameters or in | ||
| 18 | default-frame-alist. | ||
| 19 | |||
| 3 | * w32console.c (sys_tputs): Adjust argument list to prototype in | 20 | * w32console.c (sys_tputs): Adjust argument list to prototype in |
| 4 | term.c. | 21 | term.c. |
| 5 | 22 | ||