aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2001-10-28 10:22:34 +0000
committerMiles Bader2001-10-28 10:22:34 +0000
commit5bbf4378a0a5fdf5e63b73029604acd39caec3cd (patch)
treec83ec3c19a012729bb8dfb21578e2f8e86dbbfd8
parentc7f814cb6d19b8bc0bca071eb96ac0221dd1b395 (diff)
downloademacs-5bbf4378a0a5fdf5e63b73029604acd39caec3cd.tar.gz
emacs-5bbf4378a0a5fdf5e63b73029604acd39caec3cd.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog9
-rw-r--r--src/ChangeLog9
2 files changed, 16 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0d108f3087f..4091387f7fc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12001-10-28 Miles Bader <miles@gnu.org>
2
3 * faces.el (face-attribute): Add INHERIT argument, consider face
4 inheritance if it's non-nil.
5 (face-attribute-merged-with): New function.
6 (face-attribute-specified-or): New macro.
7 (face-foreground, face-background, face-stipple): Add INHERIT
8 argument. Use `face-attribute-specified-or'.
9
12001-10-28 Stefan Monnier <monnier@cs.yale.edu> 102001-10-28 Stefan Monnier <monnier@cs.yale.edu>
2 11
3 * font-lock.el: Require `syntax'. 12 * font-lock.el: Require `syntax'.
diff --git a/src/ChangeLog b/src/ChangeLog
index 4d71af55fe3..a0aece2a7d6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12001-10-28 Miles Bader <miles@gnu.org>
2
3 * xfaces.c (merge_face_heights): Handle TO being relative as well.
4 Remove #ifdef'd-out code.
5 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
6 (syms_of_xfaces): Initialize them.
7
12001-10-27 Jason Rumney <jasonr@gnu.org> 82001-10-27 Jason Rumney <jasonr@gnu.org>
2 9
3 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret. 10 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
@@ -113,7 +120,6 @@
113 `background_valid', and `background_transparent' fields. 120 `background_valid', and `background_transparent' fields.
114 (image_background, image_background_transparent): New declarations. 121 (image_background, image_background_transparent): New declarations.
115 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros. 122 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
116
117 * xfns.c (image_background, image_background_transparent) 123 * xfns.c (image_background, image_background_transparent)
118 (four_corners_best): New functions. 124 (four_corners_best): New functions.
119 (xpm_format, png_format, jpeg_format, tiff_format, gif_format) 125 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
@@ -133,7 +139,6 @@
133 (enum gs_keyword_index): Add GS_BACKGROUND. 139 (enum gs_keyword_index): Add GS_BACKGROUND.
134 (pbm_load, png_load, jpeg_load, tiff_load, gif_load): 140 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
135 Pre-calculate image background color where necessary. 141 Pre-calculate image background color where necessary.
136
137 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and 142 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
138 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background 143 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
139 color to use for image glyph reliefs. 144 color to use for image glyph reliefs.