From: Gerd Moellmann Date: Tue, 26 Jun 2001 10:35:01 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.104~150 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d9bad4870892ab97dc5350e68debb764f3426514;p=emacs.git *** empty log message *** --- diff --git a/etc/PROBLEMS b/etc/PROBLEMS index fd1ea15f0fd..40220a0a916 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -1,6 +1,17 @@ This file describes various problems that have been encountered in compiling, installing and running GNU Emacs. +* Emacs hangs when changing the default font + +This has been reported for fvwm 2.2.5 and the window manager of KDE +2.1. The reason for the hang is that Xt waits indefinitely for a +ConfigureNotify event from the window manager. A workaround is to add +something like + +emacs.waitForWM: false + +to your X resources. + * Underlines appear at the wrong position. This is caused by fonts having a wrong UNDERLINE_POSITION property. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68b4411d459..07c27f3f46c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2001-06-26 MORIOKA Tomohiko + + * mail/rmail.el (rmail-msg-restore-non-pruned-header): New + function. + (rmail-msg-prune-header): Likewise. + (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header' + and `rmail-msg-prune-header'. + 2001-06-25 Stefan Monnier * textmodes/fill.el (fill-region-as-paragraph): Don't look further diff --git a/src/ChangeLog b/src/ChangeLog index 59f7ca34653..6e51be5b1c7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,16 @@ +2001-06-26 Gerd Moellmann + + * xdisp.c (handle_invisible_prop): Deal with overlay strings at + the start of invisible text. + (setup_for_ellipsis): New function. + (next_overlay_string): After all overlay strings have been + processed, display an ellipsis if necessary. + (load_overlay_strings, get_overlay_strings): Add parameter CHARPOS. + (push_it): Initialize display_ellipsis_p on the iterator's stack. + + * dispextern.h (struct iterator_stack_entry): Add member + display_ellipsis_p. + 2001-06-25 Gerd Moellmann * widget.c (EmacsFrameSetCharSize): Set XtNwaitForWm depending