diff options
| author | Lars Magne Ingebrigtsen | 2011-07-11 16:35:46 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-11 16:35:46 +0200 |
| commit | 7261e1cfbb24c576ea740fc79cd869c90f45d603 (patch) | |
| tree | 9f53d30403df775f28067a9276be1606a1b7e25d | |
| parent | 481a51b660b2a4f78b2ba852d8eb4e49f553bba8 (diff) | |
| download | emacs-7261e1cfbb24c576ea740fc79cd869c90f45d603.tar.gz emacs-7261e1cfbb24c576ea740fc79cd869c90f45d603.zip | |
(Display Feature Testing): Try to explain what all the visual classes mean
Fixes: debbugs:3042
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 11 |
2 files changed, 12 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index c265b9e878d..9c8a76faf7c 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * frames.texi (Display Feature Testing): Try to explain what all | ||
| 4 | the visual classes mean (bug#3042). | ||
| 5 | |||
| 1 | 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org> | 6 | 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * modes.texi (Mode Line Variables): Document `mode-line-remote' | 8 | * modes.texi (Mode Line Variables): Document `mode-line-remote' |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index ee765a7e1d0..7dc6934c7d9 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -2446,10 +2446,13 @@ For a tty display, it is log to base two of the number of colors supported. | |||
| 2446 | @end defun | 2446 | @end defun |
| 2447 | 2447 | ||
| 2448 | @defun display-visual-class &optional display | 2448 | @defun display-visual-class &optional display |
| 2449 | This function returns the visual class for the screen. The value is one | 2449 | This function returns the visual class for the screen. The value is |
| 2450 | of the symbols @code{static-gray}, @code{gray-scale}, | 2450 | one of the symbols @code{static-gray} (a limited, unchangeable number |
| 2451 | @code{static-color}, @code{pseudo-color}, @code{true-color}, and | 2451 | of grays), @code{gray-scale} (a full range of grays), |
| 2452 | @code{direct-color}. | 2452 | @code{static-color} (a limited, unchangeable number of colors), |
| 2453 | @code{pseudo-color} (a limited number of colors), @code{true-color} (a | ||
| 2454 | full range of colors), and @code{direct-color} (a full range of | ||
| 2455 | colors). | ||
| 2453 | @end defun | 2456 | @end defun |
| 2454 | 2457 | ||
| 2455 | @defun display-color-cells &optional display | 2458 | @defun display-color-cells &optional display |