aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-06-26 10:35:01 +0000
committerGerd Moellmann2001-06-26 10:35:01 +0000
commitd9bad4870892ab97dc5350e68debb764f3426514 (patch)
tree2c44fa46f01fe0cfea9b3064731d2a9e3be94652
parent157521c55e8a8443894d386a86e39eed85aa982b (diff)
downloademacs-d9bad4870892ab97dc5350e68debb764f3426514.tar.gz
emacs-d9bad4870892ab97dc5350e68debb764f3426514.zip
*** empty log message ***
-rw-r--r--etc/PROBLEMS11
-rw-r--r--lisp/ChangeLog8
-rw-r--r--src/ChangeLog13
3 files changed, 32 insertions, 0 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index fd1ea15f0fd..40220a0a916 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -1,6 +1,17 @@
1This file describes various problems that have been encountered 1This file describes various problems that have been encountered
2in compiling, installing and running GNU Emacs. 2in compiling, installing and running GNU Emacs.
3 3
4* Emacs hangs when changing the default font
5
6This has been reported for fvwm 2.2.5 and the window manager of KDE
72.1. The reason for the hang is that Xt waits indefinitely for a
8ConfigureNotify event from the window manager. A workaround is to add
9something like
10
11emacs.waitForWM: false
12
13to your X resources.
14
4* Underlines appear at the wrong position. 15* Underlines appear at the wrong position.
5 16
6This is caused by fonts having a wrong UNDERLINE_POSITION property. 17This 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 @@
12001-06-26 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
2
3 * mail/rmail.el (rmail-msg-restore-non-pruned-header): New
4 function.
5 (rmail-msg-prune-header): Likewise.
6 (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
7 and `rmail-msg-prune-header'.
8
12001-06-25 Stefan Monnier <monnier@cs.yale.edu> 92001-06-25 Stefan Monnier <monnier@cs.yale.edu>
2 10
3 * textmodes/fill.el (fill-region-as-paragraph): Don't look further 11 * 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 @@
12001-06-26 Gerd Moellmann <gerd@gnu.org>
2
3 * xdisp.c (handle_invisible_prop): Deal with overlay strings at
4 the start of invisible text.
5 (setup_for_ellipsis): New function.
6 (next_overlay_string): After all overlay strings have been
7 processed, display an ellipsis if necessary.
8 (load_overlay_strings, get_overlay_strings): Add parameter CHARPOS.
9 (push_it): Initialize display_ellipsis_p on the iterator's stack.
10
11 * dispextern.h (struct iterator_stack_entry): Add member
12 display_ellipsis_p.
13
12001-06-25 Gerd Moellmann <gerd@gnu.org> 142001-06-25 Gerd Moellmann <gerd@gnu.org>
2 15
3 * widget.c (EmacsFrameSetCharSize): Set XtNwaitForWm depending 16 * widget.c (EmacsFrameSetCharSize): Set XtNwaitForWm depending