# HG changeset patch # User Eli Zaretskii # Date 972753946 0 # Node ID b81a0bbc568274518789223028815b8e6e82823f # Parent df207c5f631fad4723edf40e106adcc36f7d0a47 *** empty log message *** diff -r df207c5f631f -r b81a0bbc5682 lisp/ChangeLog --- a/lisp/ChangeLog Sat Oct 28 17:25:19 2000 +0000 +++ b/lisp/ChangeLog Sat Oct 28 17:25:46 2000 +0000 @@ -1,3 +1,21 @@ +2000-10-28 Eli Zaretskii + + Support for -fg, -bg, and -rv command-line arguments for TTYs: + * faces.el (tty-handle-reverse-video): New function. + (tty-create-frame-with-faces): Call it. + + * frame.el (frame-notice-user-settings): Don't apply + default-frame-alist and initial-frame-alist to MS-DOS frames. + Call tty-handle-reverse-video, frame-set-background-mode, and + face-set-after-frame-default for non-MS-DOS frames. + + * startup.el (tty-long-option-alist): New variable. + (tty-handle-args): New function. + (command-line): Call tty-handle-args. + + * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove; + startup.el now does that for all character-terminal frames. + 2000-10-28 Miles Bader * emacs-lisp/easy-mmode.el (define-minor-mode): Generate diff -r df207c5f631f -r b81a0bbc5682 man/ChangeLog --- a/man/ChangeLog Sat Oct 28 17:25:19 2000 +0000 +++ b/man/ChangeLog Sat Oct 28 17:25:46 2000 +0000 @@ -1,3 +1,9 @@ +2000-10-28 Eli Zaretskii + + * cmdargs.texi (Colors X): Document support for -fg, -bg, and -rv + on TTYs. Suggest use of list-colors-display to see what colors + are supported. Add index entries for list-colors-display. + 2000-10-23 Gerd Moellmann * gnus.texi: Update from version 5.213 from the Gnus repository. diff -r df207c5f631f -r b81a0bbc5682 src/ChangeLog --- a/src/ChangeLog Sat Oct 28 17:25:19 2000 +0000 +++ b/src/ChangeLog Sat Oct 28 17:25:46 2000 +0000 @@ -1,3 +1,12 @@ +2000-10-28 Eli Zaretskii + + * frame.c (Fframe_parameters): Fix the change from 2000-10-16: + don't override the colors in frame's param_alist, unless they are + unspecified. + + * term.c (reassert_line_highlight): If inverse_video is non-zero, + reverse the effect of the highlight flag. + 2000-10-27 Ken Raeburn * window.h (Fwindow_live_p): Declare.