diff options
| author | Eli Zaretskii | 2000-10-28 17:25:46 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-10-28 17:25:46 +0000 |
| commit | 45b84006f31a91a9bb381ea0b8dba2fdc9523daf (patch) | |
| tree | 393235198daeedec7a5848ac73854bf0b0a9006f | |
| parent | 54e33bb37f2d4415e1ae1a06b2559654e33cd298 (diff) | |
| download | emacs-45b84006f31a91a9bb381ea0b8dba2fdc9523daf.tar.gz emacs-45b84006f31a91a9bb381ea0b8dba2fdc9523daf.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | man/ChangeLog | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 9 |
3 files changed, 33 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d6b2ffcf2fe..3b63b2e2464 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | Support for -fg, -bg, and -rv command-line arguments for TTYs: | ||
| 4 | * faces.el (tty-handle-reverse-video): New function. | ||
| 5 | (tty-create-frame-with-faces): Call it. | ||
| 6 | |||
| 7 | * frame.el (frame-notice-user-settings): Don't apply | ||
| 8 | default-frame-alist and initial-frame-alist to MS-DOS frames. | ||
| 9 | Call tty-handle-reverse-video, frame-set-background-mode, and | ||
| 10 | face-set-after-frame-default for non-MS-DOS frames. | ||
| 11 | |||
| 12 | * startup.el (tty-long-option-alist): New variable. | ||
| 13 | (tty-handle-args): New function. | ||
| 14 | (command-line): Call tty-handle-args. | ||
| 15 | |||
| 16 | * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove; | ||
| 17 | startup.el now does that for all character-terminal frames. | ||
| 18 | |||
| 1 | 2000-10-28 Miles Bader <miles@gnu.org> | 19 | 2000-10-28 Miles Bader <miles@gnu.org> |
| 2 | 20 | ||
| 3 | * emacs-lisp/easy-mmode.el (define-minor-mode): Generate | 21 | * emacs-lisp/easy-mmode.el (define-minor-mode): Generate |
diff --git a/man/ChangeLog b/man/ChangeLog index efe559c4ac8..7ad93bc9864 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * cmdargs.texi (Colors X): Document support for -fg, -bg, and -rv | ||
| 4 | on TTYs. Suggest use of list-colors-display to see what colors | ||
| 5 | are supported. Add index entries for list-colors-display. | ||
| 6 | |||
| 1 | 2000-10-23 Gerd Moellmann <gerd@gnu.org> | 7 | 2000-10-23 Gerd Moellmann <gerd@gnu.org> |
| 2 | 8 | ||
| 3 | * gnus.texi: Update from version 5.213 from the Gnus repository. | 9 | * gnus.texi: Update from version 5.213 from the Gnus repository. |
diff --git a/src/ChangeLog b/src/ChangeLog index eb4f2052aec..f49ca95e947 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * frame.c (Fframe_parameters): Fix the change from 2000-10-16: | ||
| 4 | don't override the colors in frame's param_alist, unless they are | ||
| 5 | unspecified. | ||
| 6 | |||
| 7 | * term.c (reassert_line_highlight): If inverse_video is non-zero, | ||
| 8 | reverse the effect of the highlight flag. | ||
| 9 | |||
| 1 | 2000-10-27 Ken Raeburn <raeburn@gnu.org> | 10 | 2000-10-27 Ken Raeburn <raeburn@gnu.org> |
| 2 | 11 | ||
| 3 | * window.h (Fwindow_live_p): Declare. | 12 | * window.h (Fwindow_live_p): Declare. |