diff options
| author | Gerd Moellmann | 2001-06-26 10:35:01 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-06-26 10:35:01 +0000 |
| commit | d9bad4870892ab97dc5350e68debb764f3426514 (patch) | |
| tree | 2c44fa46f01fe0cfea9b3064731d2a9e3be94652 | |
| parent | 157521c55e8a8443894d386a86e39eed85aa982b (diff) | |
| download | emacs-d9bad4870892ab97dc5350e68debb764f3426514.tar.gz emacs-d9bad4870892ab97dc5350e68debb764f3426514.zip | |
*** empty log message ***
| -rw-r--r-- | etc/PROBLEMS | 11 | ||||
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | src/ChangeLog | 13 |
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 @@ | |||
| 1 | This file describes various problems that have been encountered | 1 | This file describes various problems that have been encountered |
| 2 | in compiling, installing and running GNU Emacs. | 2 | in compiling, installing and running GNU Emacs. |
| 3 | 3 | ||
| 4 | * Emacs hangs when changing the default font | ||
| 5 | |||
| 6 | This has been reported for fvwm 2.2.5 and the window manager of KDE | ||
| 7 | 2.1. The reason for the hang is that Xt waits indefinitely for a | ||
| 8 | ConfigureNotify event from the window manager. A workaround is to add | ||
| 9 | something like | ||
| 10 | |||
| 11 | emacs.waitForWM: false | ||
| 12 | |||
| 13 | to your X resources. | ||
| 14 | |||
| 4 | * Underlines appear at the wrong position. | 15 | * Underlines appear at the wrong position. |
| 5 | 16 | ||
| 6 | This is caused by fonts having a wrong UNDERLINE_POSITION property. | 17 | 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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-06-25 Stefan Monnier <monnier@cs.yale.edu> | 9 | 2001-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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-06-25 Gerd Moellmann <gerd@gnu.org> | 14 | 2001-06-25 Gerd Moellmann <gerd@gnu.org> |
| 2 | 15 | ||
| 3 | * widget.c (EmacsFrameSetCharSize): Set XtNwaitForWm depending | 16 | * widget.c (EmacsFrameSetCharSize): Set XtNwaitForWm depending |