aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-20 13:29:38 +0000
committerGerd Moellmann2000-08-20 13:29:38 +0000
commit511bd4eb0b86480b119e624e7d23bab0edcacf81 (patch)
treef90c98f2fc131d7c1c1cc9479eef5593a0d5a456
parentdde0101c65e67751b236d971306049b431538c61 (diff)
downloademacs-511bd4eb0b86480b119e624e7d23bab0edcacf81.tar.gz
emacs-511bd4eb0b86480b119e624e7d23bab0edcacf81.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog24
2 files changed, 24 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ba953c47e81..d078aad3204 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12000-08-20 Gerd Moellmann <gerd@gnu.org>
2
3 * startup.el (command-line): Clear realized faces after
4 modifying TTY color mappings.
5
12000-08-20 Miles Bader <miles@gnu.org> 62000-08-20 Miles Bader <miles@gnu.org>
2 7
3 * faces.el (face-attr-match-p): Don't return true if ATTRS are 8 * faces.el (face-attr-match-p): Don't return true if ATTRS are
diff --git a/src/ChangeLog b/src/ChangeLog
index 68e26e7f547..984cb3e81db 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,7 +1,21 @@
12000-08-20 Gerd Moellmann <gerd@gnu.org>
2
3 * xfaces.c (lface_equal_p): Compare strings differently.
4 (Qtty_color_alist, Vtty_defined_color_alist): New variables.
5 (realize_tty_face): Use them.
6 (syms_of_xfaces): Initialize new variables.
7 (map_tty_color): New function, extracted from realize_tty_face.
8 (map_tty_color) [MSDOS || WINDOWSNT]: If using the frame's default
9 foreground or background color, store the new color name in the
10 realized face; previous code trying to do this had no effect.
11 (realize_tty_face): Use map_tty_color.
12 (Fclear_face_cache): Set face_change_count and ensure thorough
13 redisplay.
14
12000-08-19 Gerd Moellmann <gerd@gnu.org> 152000-08-19 Gerd Moellmann <gerd@gnu.org>
2 16
3 * undo.c (record_first_change, record_marker_adjustment): Don'use 17 * undo.c (record_first_change, record_marker_adjustment): Don't
4 XBUFFER on last_undo_buffer which might not be a buffer. 18 use XBUFFER on last_undo_buffer which might not be a buffer.
5 19
62000-08-18 Kenichi Handa <handa@etl.go.jp> 202000-08-18 Kenichi Handa <handa@etl.go.jp>
7 21
@@ -12,8 +26,8 @@
12 26
132000-08-18 Gerd Moellmann <gerd@gnu.org> 272000-08-18 Gerd Moellmann <gerd@gnu.org>
14 28
15 * lisp.h (CHECK) [ENABLE_CHECKING]: Make both side of the 29 * lisp.h (CHECK) [ENABLE_CHECKING]: Make both sides of the
16 conditional have void type, for standard C compilers. 30 conditional have void type, for Standard C compilers.
17 31
18 * xdisp.c (redisplay_internal): Compare windows for equality with 32 * xdisp.c (redisplay_internal): Compare windows for equality with
19 EQ, instead of applying XWINDOW to something that might not 33 EQ, instead of applying XWINDOW to something that might not
@@ -26,7 +40,7 @@
26 40
272000-08-18 Gerd Moellmann <gerd@gnu.org> 412000-08-18 Gerd Moellmann <gerd@gnu.org>
28 42
29 * minibuf.c (do_completion): Use EQ instead of != to compare 43 * minibuf.c (do_completion): Use EQ instead of `!=' to compare
30 Lisp_Objects. 44 Lisp_Objects.
31 45
32 * keyboard.c (kbd_buffer_get_event): Handle the case that the 46 * keyboard.c (kbd_buffer_get_event): Handle the case that the