# HG changeset patch # User Gerd Moellmann # Date 998473473 0 # Node ID 95a646d04de518dd1392035f71d1e7709c04dae3 # Parent 70ef1eb656a6616b89232a352f311a11376a9d86 *** empty log message *** diff -r 70ef1eb656a6 -r 95a646d04de5 lisp/ChangeLog --- a/lisp/ChangeLog Wed Aug 22 09:44:15 2001 +0000 +++ b/lisp/ChangeLog Wed Aug 22 09:44:33 2001 +0000 @@ -1,3 +1,12 @@ +2001-08-22 Gerd Moellmann + + * bindings.el (mode-line-unbury-buffer): Add EVENT parameter. + Temporarily select EVENT's window for switching buffers. + (mode-line-bury-buffer): New function. + (mode-line-buffer-identification-keymap): Use it instead of + bury-buffer. Bind down-mouse events to prevent global down-mouse + events to shine through. + 2001-08-21 Stefan Monnier * newcomment.el (comment-beginning): Make sure the comment-start diff -r 70ef1eb656a6 -r 95a646d04de5 src/ChangeLog --- a/src/ChangeLog Wed Aug 22 09:44:15 2001 +0000 +++ b/src/ChangeLog Wed Aug 22 09:44:33 2001 +0000 @@ -1,5 +1,19 @@ 2001-08-22 Gerd Moellmann + * dispextern.h (struct face_cache): Add member + menu_face_changed_p. + + * xfaces.c (menu_face_changed_default): New variable. + (menu_face_changed_count): Variable removed. + (Finternal_set_lisp_face_attribute): Doc fix. If FRAME is t, set + the menu_face_changed_default flag, otherwise set the FRAME's + menu_face_changed_p flag if the `menu' face has been changed. + Prevent calling set_font_frame_param if FRAME is t. + (make_face_cache): Initialize cache's menu_face_changed_p + from menu_face_changed_default. + (realize_basic_faces): Look into the frame's face cache to + determine if the menu appearance needs updating. + * keymap.c (access_keymap): Fix last change to not consider IDX when it has modifiers.