aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-05-12 03:31:58 +0000
committerChong Yidong2009-05-12 03:31:58 +0000
commit80be4dd7b692d869c21ad46f8aaa3a3034a52d70 (patch)
tree55b7deadea1469330e5fd8401e127356d8e1a6ba
parent01d2a3f93c8d0a5cdd17916e0116578d18451796 (diff)
downloademacs-80be4dd7b692d869c21ad46f8aaa3a3034a52d70.tar.gz
emacs-80be4dd7b692d869c21ad46f8aaa3a3034a52d70.zip
* frames.texi (Font and Color Parameters): Rename from Color
Parameters. Document font-backend parameter. * vol2.texi (Top): Update node listing. * vol1.texi (Top): Update node listing. * elisp.texi (Top): Update node listing.
-rw-r--r--doc/lispref/ChangeLog9
-rw-r--r--doc/lispref/elisp.texi2
-rw-r--r--doc/lispref/frames.texi18
-rw-r--r--doc/lispref/vol1.texi2
-rw-r--r--doc/lispref/vol2.texi2
5 files changed, 25 insertions, 8 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index f8e2e9b22dc..f07f4ca1cd0 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,12 @@
12009-05-12 Chong Yidong <cyd@stupidchicken.com>
2
3 * frames.texi (Font and Color Parameters): Rename from Color
4 Parameters. Document font-backend parameter.
5
6 * vol2.texi (Top): Update node listing.
7 * vol1.texi (Top): Update node listing.
8 * elisp.texi (Top): Update node listing.
9
12009-05-11 Martin Rudalics <rudalics@gmx.at> 102009-05-11 Martin Rudalics <rudalics@gmx.at>
2 11
3 * windows.texi (Choosing Window): Don't explicitly refer to 12 * windows.texi (Choosing Window): Don't explicitly refer to
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 9cf709bdd09..d6c4040dd0b 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -982,7 +982,7 @@ Window Frame Parameters
982* Buffer Parameters:: Which buffers have been or should be shown. 982* Buffer Parameters:: Which buffers have been or should be shown.
983* Management Parameters:: Communicating with the window manager. 983* Management Parameters:: Communicating with the window manager.
984* Cursor Parameters:: Controlling the cursor appearance. 984* Cursor Parameters:: Controlling the cursor appearance.
985* Color Parameters:: Colors of various parts of the frame. 985* Font and Color Parameters:: Colors of various parts of the frame.
986 986
987Positions 987Positions
988 988
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index 28052165575..a2b1431693a 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -477,7 +477,7 @@ terminal frames.
477* Buffer Parameters:: Which buffers have been or should be shown. 477* Buffer Parameters:: Which buffers have been or should be shown.
478* Management Parameters:: Communicating with the window manager. 478* Management Parameters:: Communicating with the window manager.
479* Cursor Parameters:: Controlling the cursor appearance. 479* Cursor Parameters:: Controlling the cursor appearance.
480* Color Parameters:: Colors of various parts of the frame. 480* Font and Color Parameters:: Fonts and colors for the frame text.
481@end menu 481@end menu
482 482
483@node Basic Parameters 483@node Basic Parameters
@@ -812,12 +812,20 @@ modificatoin of the usual cursor type (solid box becomes hollow box,
812and bar becomes a narrower bar). 812and bar becomes a narrower bar).
813@end defvar 813@end defvar
814 814
815@node Color Parameters 815@node Font and Color Parameters
816@subsubsection Color Parameters 816@subsubsection Font and Color Parameters
817 817
818 These frame parameters control the use of colors. 818 These frame parameters control the use of fonts and colors.
819 819
820@table @code 820@table @code
821@item font-backend
822A list of symbols, specifying the @dfn{font backends} to use for
823drawing fonts in the frame, in order of priority. On X, there are
824currently two available font backends: @code{x} (the X core font
825driver) and @code{xft} (the Xft font driver). On other systems, there
826is only one available font backend, so it does not make sense to
827modify this frame parameter.
828
821@item background-mode 829@item background-mode
822This parameter is either @code{dark} or @code{light}, according 830This parameter is either @code{dark} or @code{light}, according
823to whether the background color is a light one or a dark one. 831to whether the background color is a light one or a dark one.
@@ -1844,7 +1852,7 @@ is over mouse-sensitive text.
1844 These variables affect newly created frames. They do not normally 1852 These variables affect newly created frames. They do not normally
1845affect existing frames; however, if you set the mouse color of a 1853affect existing frames; however, if you set the mouse color of a
1846frame, that also installs the current value of those two variables. 1854frame, that also installs the current value of those two variables.
1847@xref{Color Parameters}. 1855@xref{Font and Color Parameters}.
1848 1856
1849 The values you can use, to specify either of these pointer shapes, are 1857 The values you can use, to specify either of these pointer shapes, are
1850defined in the file @file{lisp/term/x-win.el}. Use @kbd{M-x apropos 1858defined in the file @file{lisp/term/x-win.el}. Use @kbd{M-x apropos
diff --git a/doc/lispref/vol1.texi b/doc/lispref/vol1.texi
index e09e51625ae..00975809302 100644
--- a/doc/lispref/vol1.texi
+++ b/doc/lispref/vol1.texi
@@ -991,7 +991,7 @@ Window Frame Parameters
991* Buffer Parameters:: Which buffers have been or should be shown. 991* Buffer Parameters:: Which buffers have been or should be shown.
992* Management Parameters:: Communicating with the window manager. 992* Management Parameters:: Communicating with the window manager.
993* Cursor Parameters:: Controlling the cursor appearance. 993* Cursor Parameters:: Controlling the cursor appearance.
994* Color Parameters:: Colors of various parts of the frame. 994* Font and Color Parameters:: Colors of various parts of the frame.
995 995
996Positions 996Positions
997 997
diff --git a/doc/lispref/vol2.texi b/doc/lispref/vol2.texi
index cf38d3ca84a..2ae6b0c5d74 100644
--- a/doc/lispref/vol2.texi
+++ b/doc/lispref/vol2.texi
@@ -990,7 +990,7 @@ Window Frame Parameters
990* Buffer Parameters:: Which buffers have been or should be shown. 990* Buffer Parameters:: Which buffers have been or should be shown.
991* Management Parameters:: Communicating with the window manager. 991* Management Parameters:: Communicating with the window manager.
992* Cursor Parameters:: Controlling the cursor appearance. 992* Cursor Parameters:: Controlling the cursor appearance.
993* Color Parameters:: Colors of various parts of the frame. 993* Font and Color Parameters:: Colors of various parts of the frame.
994 994
995Positions 995Positions
996 996