aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorMiles Bader2006-02-01 10:07:17 +0000
committerMiles Bader2006-02-01 10:07:17 +0000
commit06eb776d8e80eaed0f6b04349dbd4df9292131d9 (patch)
treef8f308fcd75d052e99c7e176efc100c8488fda7f /lispref
parentdb856169c248b363fe3dc5ee4e8b1dd18c3a05a2 (diff)
parent46e8fe3d6ce114ae3ecd41f7add9ed7f0c13f4b6 (diff)
downloademacs-06eb776d8e80eaed0f6b04349dbd4df9292131d9.tar.gz
emacs-06eb776d8e80eaed0f6b04349dbd4df9292131d9.zip
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-9
Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 16-33) - Update from CVS - Install ERC. - Fix ERC compiler warnings. - Use utf-8 encoding in ERC ChangeLogs. - Merge ERC-related Viper hacks into Viper. - Merge from erc--main--0 - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 8-13) - Merge from emacs--devo--0 - Update from CVS
Diffstat (limited to 'lispref')
-rw-r--r--lispref/ChangeLog15
-rw-r--r--lispref/display.texi4
-rw-r--r--lispref/frames.texi4
-rw-r--r--lispref/lists.texi2
4 files changed, 20 insertions, 5 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index ef07c950e09..2700e2f2261 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,18 @@
12006-01-29 Chong Yidong <cyd@stupidchicken.com>
2
3 * display.texi (Other Display Specs, Image Descriptors): Image
4 description is a list, not a cons cell.
5
62006-01-28 Luc Teirlinck <teirllm@auburn.edu>
7
8 * lists.texi (Cons Cells): Minor correction (the cdr of a dotted
9 list is not necessarily a list).
10
112006-01-27 Eli Zaretskii <eliz@gnu.org>
12
13 * frames.texi (Layout Parameters): border-width and
14 internal-border-width belong to the frame, not the window.
15
12006-01-19 Richard M. Stallman <rms@gnu.org> 162006-01-19 Richard M. Stallman <rms@gnu.org>
2 17
3 * nonascii.texi (Translation of Characters): Search cmds use 18 * nonascii.texi (Translation of Characters): Search cmds use
diff --git a/lispref/display.texi b/lispref/display.texi
index 1bd10113ce9..0bb68bd4166 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -3280,7 +3280,7 @@ Display @var{string} instead of the text that has this property.
3280Recursive display specifications are not supported---@var{string}'s 3280Recursive display specifications are not supported---@var{string}'s
3281@code{display} properties, if any, are not used. 3281@code{display} properties, if any, are not used.
3282 3282
3283@item (image . @var{image-props}) 3283@item (image @var{image-props})
3284This kind of display specification is an image descriptor (@pxref{Images}). 3284This kind of display specification is an image descriptor (@pxref{Images}).
3285When used as a display specification, it means to display the image 3285When used as a display specification, it means to display the image
3286instead of the text that has the display specification. 3286instead of the text that has the display specification.
@@ -3508,7 +3508,7 @@ function always returns @code{t}; for other image types, it returns
3508@cindex image descriptor 3508@cindex image descriptor
3509 3509
3510 An image description is a list of the form @code{(image 3510 An image description is a list of the form @code{(image
3511. @var{props})}, where @var{props} is a property list containing 3511@var{props})}, where @var{props} is a property list containing
3512alternating keyword symbols (symbols whose names start with a colon) and 3512alternating keyword symbols (symbols whose names start with a colon) and
3513their values. You can use any Lisp object as a property, but the only 3513their values. You can use any Lisp object as a property, but the only
3514properties that have any special meaning are certain symbols, all of 3514properties that have any special meaning are certain symbols, all of
diff --git a/lispref/frames.texi b/lispref/frames.texi
index 3cb5e49dbac..4b967d8989c 100644
--- a/lispref/frames.texi
+++ b/lispref/frames.texi
@@ -466,10 +466,10 @@ frame, or control their sizes.
466 466
467@table @code 467@table @code
468@item border-width 468@item border-width
469The width in pixels of the window border. 469The width in pixels of the frame's border.
470 470
471@item internal-border-width 471@item internal-border-width
472The distance in pixels between text and border. 472The distance in pixels between text and the frame's border.
473 473
474@item vertical-scroll-bars 474@item vertical-scroll-bars
475Whether the frame has scroll bars for vertical scrolling, and which side 475Whether the frame has scroll bars for vertical scrolling, and which side
diff --git a/lispref/lists.texi b/lispref/lists.texi
index 422c977184c..ef9220d2411 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -82,7 +82,7 @@ the end of a list enter infinite loops if given a circular list.
82@dfn{list structure} has come to mean any structure made out of cons 82@dfn{list structure} has come to mean any structure made out of cons
83cells. 83cells.
84 84
85 The @sc{cdr} of any nonempty list @var{l} is a list containing all the 85 The @sc{cdr} of any nonempty true list @var{l} is a list containing all the
86elements of @var{l} except the first. 86elements of @var{l} except the first.
87 87
88 @xref{Cons Cell Type}, for the read and print syntax of cons cells and 88 @xref{Cons Cell Type}, for the read and print syntax of cons cells and