aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2002-01-25 14:11:11 +0000
committerEli Zaretskii2002-01-25 14:11:11 +0000
commit0011f34671f91aa8c225bb294afbabd28991d09c (patch)
tree48c964bb4b2930771d1c3a99d1e07e225a76c678
parent99fdd6bcfa202f9a72027f019d276ae818eb9337 (diff)
downloademacs-0011f34671f91aa8c225bb294afbabd28991d09c.tar.gz
emacs-0011f34671f91aa8c225bb294afbabd28991d09c.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog34
-rw-r--r--src/ChangeLog2
2 files changed, 36 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a240ff602b4..9c32c66bc66 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,37 @@
12002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
2
3 Support for more than 8 colors on character terminals:
4
5 * term/rxvt.el: New file.
6
7 * Makefile.in (DONTCOMPILE): Remove term/xterm.el.
8
9 * term/xterm.el (xterm-standard-colors): New variable.
10 (xterm-rgb-convert-to-16bit, xterm-register-default-colors)
11 (xterm-rxvt-set-background-mode): New functions.
12 (toplevel): Call xterm-register-default-colors,
13 xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
14 Add support for more keys from xterm's terminfo entry.
15
16 * facemenu.el (list-colors-display): If the argument is nil, don't
17 show more colors that the number returned by display-color-cells.
18
19 * term/pc-win.el (msdos-color-values): Reverse the order of the
20 colors, since tty-color-define now preserves the registration
21 order.
22
23 * w32-fns.el (w32-tty-standard-colors): Reverse the order.
24
25 * term/tty-colors.el (tty-standard-colors): Reverse the order.
26 (tty-register-default-colors): New function; code moved from
27 startup.el's command-line.
28 (tty-modify-color-alist): Use nconc instead of cons, to preserve
29 the order the colors where registered.
30
31 * frame.el (display-color-cells): Use tty-display-color-cells.
32
33 * startup.el (command-line): Call tty-register-default-colors.
34
12002-01-25 Richard M. Stallman <rms@gnu.org> 352002-01-25 Richard M. Stallman <rms@gnu.org>
2 36
3 * subr.el (remove): Doc fix. 37 * subr.el (remove): Doc fix.
diff --git a/src/ChangeLog b/src/ChangeLog
index 0ae6b099e24..1de38454e55 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,8 @@
2 2
3 * term.c (Ftty_display_color_cells): New function. 3 * term.c (Ftty_display_color_cells): New function.
4 (syms_of_term): Defsubr it. 4 (syms_of_term): Defsubr it.
5 (Ftty_display_color_cells, Ftty_display_color_p): Change the
6 argument name to DISPLAY. Doc fix.
5 7
6 * dispextern.h: Add prototype for set_tty_color_mode and 8 * dispextern.h: Add prototype for set_tty_color_mode and
7 tty_setup_colors. 9 tty_setup_colors.