diff options
| author | Gerd Moellmann | 2000-03-05 10:44:01 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-05 10:44:01 +0000 |
| commit | 100b3cbbd4c032130d14ffc5a4beb9af3370769d (patch) | |
| tree | 495410bee637e7ed9b6947736c3eb8926339d0c9 | |
| parent | a6ad00c02a925972fb1e449ca22c69bb96f1e3fa (diff) | |
| download | emacs-100b3cbbd4c032130d14ffc5a4beb9af3370769d.tar.gz emacs-100b3cbbd4c032130d14ffc5a4beb9af3370769d.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 37 | ||||
| -rw-r--r-- | src/ChangeLog | 14 |
2 files changed, 51 insertions, 0 deletions
| @@ -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 | ||
| 14 | visual Emacs should use. The resource's value should be a string of | ||
| 15 | the form `CLASS-DEPTH', where CLASS is the name of the visual class, | ||
| 16 | and DEPTH is the requested color depth as a decimal number. Valid | ||
| 17 | visual class names are | ||
| 18 | |||
| 19 | TrueColor | ||
| 20 | PseudoColor | ||
| 21 | DirectColor | ||
| 22 | StaticColor | ||
| 23 | GrayScale | ||
| 24 | StaticGray | ||
| 25 | |||
| 26 | Visual class names specified as X resource are case-insensitive, i.e. | ||
| 27 | `pseudocolor', `Pseudocolor' and `PseudoColor' all have the same | ||
| 28 | meaning. | ||
| 29 | |||
| 30 | The program `xdpyinfo' can be used to list the visual classes | ||
| 31 | supported on your display, and which depths they have. If | ||
| 32 | `visualClass' is not specified, Emacs uses the display's default | ||
| 33 | visual. | ||
| 34 | |||
| 35 | Example: | ||
| 36 | |||
| 37 | emacs.visualClass: TrueColor-8 | ||
| 38 | |||
| 39 | *** The X resource `privateColormap', class `PrivateColormap', | ||
| 40 | specifies that Emacs should use a private colormap if it is using the | ||
| 41 | default visual, and that visual is of class PseudoColor. Recognized | ||
| 42 | resource values are `true' or `on'. | ||
| 43 | |||
| 44 | Example: | ||
| 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 |
| 12 | the --without-pop configure option, should that be necessary. | 49 | the --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 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-03-04 Gerd Moellmann <gerd@gnu.org> | 15 | 2000-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) |