diff options
| author | Gerd Moellmann | 2000-04-18 13:42:41 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-04-18 13:42:41 +0000 |
| commit | f6d3257b91cfc32407e2cfba6bfb9c9e37f9254d (patch) | |
| tree | 5b080c4ea211ada86f144472b8f2305fd48ab82f | |
| parent | 5dbf89bc7d65c1871285e7461a4fdc17bf23a984 (diff) | |
| download | emacs-f6d3257b91cfc32407e2cfba6bfb9c9e37f9254d.tar.gz emacs-f6d3257b91cfc32407e2cfba6bfb9c9e37f9254d.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 17 | ||||
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
3 files changed, 29 insertions, 0 deletions
| @@ -1666,6 +1666,23 @@ Note that +++ before an item means the Lisp manual has been updated. | |||
| 1666 | When you add a new item, please add it without either +++ or --- | 1666 | When you add a new item, please add it without either +++ or --- |
| 1667 | so I will know I still need to look at it -- rms. | 1667 | so I will know I still need to look at it -- rms. |
| 1668 | 1668 | ||
| 1669 | ** The function tty-suppress-bold-inverse-default-colors can be used | ||
| 1670 | to make Emacs avoid displaying text with bold black foreground on TTYs. | ||
| 1671 | |||
| 1672 | Some terminals, notably PC consoles, emulate bold text by displaying | ||
| 1673 | text in brighter colors. On such a console, a bold black foreground | ||
| 1674 | is displayed in a gray color. If this turns out to be hard to read on | ||
| 1675 | your monitor---the problem occurred with the mode line on | ||
| 1676 | laptops---you can instruct Emacs to ignore the text's boldness, and to | ||
| 1677 | just display it black instead. | ||
| 1678 | |||
| 1679 | This situation can't be detected automatically. You will have to put | ||
| 1680 | a line like | ||
| 1681 | |||
| 1682 | (tty-suppress-bold-inverse-default-colors t) | ||
| 1683 | |||
| 1684 | in your `.emacs'. | ||
| 1685 | |||
| 1669 | ** New face implementation. | 1686 | ** New face implementation. |
| 1670 | 1687 | ||
| 1671 | Emacs faces have been reimplemented from scratch. They don't use XLFD | 1688 | Emacs faces have been reimplemented from scratch. They don't use XLFD |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dc795b0fd0f..a7bf953f3bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2000-04-18 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline | ||
| 4 | at the start of an existing but empty folder. | ||
| 5 | |||
| 6 | 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br> | ||
| 7 | |||
| 8 | * ps-mule.el: Customization fix, doc fix. | ||
| 9 | (ps-multibyte-buffer): Customization fix. | ||
| 10 | |||
| 1 | 2000-04-17 Richard M. Stallman <rms@caffeine.ai.mit.edu> | 11 | 2000-04-17 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
| 2 | 12 | ||
| 3 | * subr.el (read-passwd): Use read-char-exclusive. | 13 | * subr.el (read-passwd): Use read-char-exclusive. |
diff --git a/src/ChangeLog b/src/ChangeLog index ea6b07e64af..36aeee51109 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2000-04-18 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-04-18 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * lread.c (read_filtered_event): Cancel and start busy cursor. | ||
| 4 | |||
| 3 | * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account | 5 | * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account |
| 4 | that the per-character metrics may be null. | 6 | that the per-character metrics may be null. |
| 5 | 7 | ||