aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-05 10:44:01 +0000
committerGerd Moellmann2000-03-05 10:44:01 +0000
commit100b3cbbd4c032130d14ffc5a4beb9af3370769d (patch)
tree495410bee637e7ed9b6947736c3eb8926339d0c9
parenta6ad00c02a925972fb1e449ca22c69bb96f1e3fa (diff)
downloademacs-100b3cbbd4c032130d14ffc5a4beb9af3370769d.tar.gz
emacs-100b3cbbd4c032130d14ffc5a4beb9af3370769d.zip
*** empty log message ***
-rw-r--r--etc/NEWS37
-rw-r--r--src/ChangeLog14
2 files changed, 51 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 22a0ee62218..8f89a8980e9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -8,6 +8,43 @@ For older news, see the file ONEWS.
8 8
9* Installation Changes in Emacs 21.1 9* Installation Changes in Emacs 21.1
10 10
11** There are two new resources for colormap handling under X.
12
13*** The X resource `visualClass, class `VisualClass', specifies the
14visual Emacs should use. The resource's value should be a string of
15the form `CLASS-DEPTH', where CLASS is the name of the visual class,
16and DEPTH is the requested color depth as a decimal number. Valid
17visual class names are
18
19 TrueColor
20 PseudoColor
21 DirectColor
22 StaticColor
23 GrayScale
24 StaticGray
25
26Visual class names specified as X resource are case-insensitive, i.e.
27`pseudocolor', `Pseudocolor' and `PseudoColor' all have the same
28meaning.
29
30The program `xdpyinfo' can be used to list the visual classes
31supported on your display, and which depths they have. If
32`visualClass' is not specified, Emacs uses the display's default
33visual.
34
35Example:
36
37 emacs.visualClass: TrueColor-8
38
39*** The X resource `privateColormap', class `PrivateColormap',
40specifies that Emacs should use a private colormap if it is using the
41default visual, and that visual is of class PseudoColor. Recognized
42resource values are `true' or `on'.
43
44Example:
45
46 emacs.privateColormap: true
47
11** `movemail' defaults to supporting POP. You can turn this off using 48** `movemail' defaults to supporting POP. You can turn this off using
12the --without-pop configure option, should that be necessary. 49the --without-pop configure option, should that be necessary.
13 50
diff --git a/src/ChangeLog b/src/ChangeLog
index fdaba32a46f..fd62357353c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,17 @@
12000-03-05 Gerd Moellmann <gerd@gnu.org>
2
3 * xdisp.c (try_window_id): Recompute unchanged information if
4 it is invalid.
5
6 * xterm.c (x_term_init): Create a colormap if not using the
7 default visual.
8
9 * xterm.h (select_visual): Change prototype.
10
11 * xfns.c (select_visual): Rewritten. Recognize user-specified
12 visual classes.
13 (visual_classes): New variable.
14
12000-03-04 Gerd Moellmann <gerd@gnu.org> 152000-03-04 Gerd Moellmann <gerd@gnu.org>
2 16
3 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color) 17 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)