aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2002-06-09 13:03:29 +0000
committerMiles Bader2002-06-09 13:03:29 +0000
commitab2e49a0b5b09b69a2cd375170b031d8045a2de4 (patch)
treeaf1bf82e3ba43f0b98b2f9921c0294bfa8b8a7b2
parentb35df831c55eef2f2a4707fb5583fd5abb2c7bc3 (diff)
downloademacs-ab2e49a0b5b09b69a2cd375170b031d8045a2de4.tar.gz
emacs-ab2e49a0b5b09b69a2cd375170b031d8045a2de4.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog17
-rw-r--r--src/ChangeLog10
2 files changed, 27 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dc31ec09da0..13ab17c1868 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12002-06-05 Miles Bader <miles@gnu.org>
2
3 * faces.el (display-supports-face-attributes-p): New function.
4 * term/tty-colors.el (color-name-rgb-alist): Use 16-bit RGB values
5 instead of 8-bit, for consistency with the rest of emacs.
6 (tty-color-canonicalize): Only copy COLOR if we need to change it.
7 (tty-color-approximate): Scale values from `color-name-rgb-alist'
8 appropriately. Return the whole color description, rather than
9 just the RGB values.
10 (tty-color-standard-values): New function. Code mostly taken from
11 `tty-color-translate'.
12 (tty-color-translate, tty-color-values): Use `tty-color-desc' to
13 do all the work.
14 (tty-color-desc): Do color lookup here instead of calling
15 `tty-color-translate' and `tty-color-by-index'; this is now the
16 main place to do it.
17
12002-06-09 Martin Stjernholm <bug-cc-mode@gnu.org> 182002-06-09 Martin Stjernholm <bug-cc-mode@gnu.org>
2 19
3 * progmodes/cc-style.el (c-set-style, c-set-style-1): Added 20 * progmodes/cc-style.el (c-set-style, c-set-style-1): Added
diff --git a/src/ChangeLog b/src/ChangeLog
index 1347eca1626..6376ed00446 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12002-06-09 Miles Bader <miles@gnu.org>
2
3 * xfaces.c (Ftty_supports_face_attributes_p): New function.
4 (parse_rgb_list, tty_lookup_color): New functions.
5 (tty_defined_color): Use `tty_lookup_color' to do all the work.
6 (color_distance, Fcolor_distance): New functions.
7 (TTY_SAME_COLOR_THRESHOLD): New macro.
8 (Qtty_color_standard_values): New variable.
9 (syms_of_xfaces): Initialize new vars & functions.
10
12002-06-08 Colin Walters <walters@verbum.org> 112002-06-08 Colin Walters <walters@verbum.org>
2 12
3 * textprop.c (Vchar_property_alias_alist): New variable. 13 * textprop.c (Vchar_property_alias_alist): New variable.