aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-04-18 13:42:41 +0000
committerGerd Moellmann2000-04-18 13:42:41 +0000
commitf6d3257b91cfc32407e2cfba6bfb9c9e37f9254d (patch)
tree5b080c4ea211ada86f144472b8f2305fd48ab82f
parent5dbf89bc7d65c1871285e7461a4fdc17bf23a984 (diff)
downloademacs-f6d3257b91cfc32407e2cfba6bfb9c9e37f9254d.tar.gz
emacs-f6d3257b91cfc32407e2cfba6bfb9c9e37f9254d.zip
*** empty log message ***
-rw-r--r--etc/NEWS17
-rw-r--r--lisp/ChangeLog10
-rw-r--r--src/ChangeLog2
3 files changed, 29 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 8ca76c1afd8..bc5edcc181d 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1666,6 +1666,23 @@ Note that +++ before an item means the Lisp manual has been updated.
1666When you add a new item, please add it without either +++ or --- 1666When you add a new item, please add it without either +++ or ---
1667so I will know I still need to look at it -- rms. 1667so 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
1670to make Emacs avoid displaying text with bold black foreground on TTYs.
1671
1672Some terminals, notably PC consoles, emulate bold text by displaying
1673text in brighter colors. On such a console, a bold black foreground
1674is displayed in a gray color. If this turns out to be hard to read on
1675your monitor---the problem occurred with the mode line on
1676laptops---you can instruct Emacs to ignore the text's boldness, and to
1677just display it black instead.
1678
1679This situation can't be detected automatically. You will have to put
1680a line like
1681
1682 (tty-suppress-bold-inverse-default-colors t)
1683
1684in your `.emacs'.
1685
1669** New face implementation. 1686** New face implementation.
1670 1687
1671Emacs faces have been reimplemented from scratch. They don't use XLFD 1688Emacs 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 @@
12000-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
62000-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
12000-04-17 Richard M. Stallman <rms@caffeine.ai.mit.edu> 112000-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 @@
12000-04-18 Gerd Moellmann <gerd@gnu.org> 12000-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