aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-05-01 17:01:44 +0000
committerLuc Teirlinck2005-05-01 17:01:44 +0000
commitb2c8f1430a21fd3e32ae7d5ef38948603a18ff53 (patch)
tree410a26102bcf4247e2517e5e7783756af806db23
parentd6028ef22992b5fd60c7216bac7ca384d8049e2d (diff)
downloademacs-b2c8f1430a21fd3e32ae7d5ef38948603a18ff53.tar.gz
emacs-b2c8f1430a21fd3e32ae7d5ef38948603a18ff53.zip
Fix typos and Texinfo usage.
-rw-r--r--lispref/display.texi14
1 files changed, 7 insertions, 7 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 5cff834b84f..76bf99e0ede 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -1142,9 +1142,9 @@ This function removes all the overlays between @var{start} and
1142@var{end} whose property @var{name} has the value @var{value}. It can 1142@var{end} whose property @var{name} has the value @var{value}. It can
1143move the endpoints of the overlays in the region, or split them. 1143move the endpoints of the overlays in the region, or split them.
1144 1144
1145If @var{name} is omitted or nil, it means to delete all overlays in 1145If @var{name} is omitted or @code{nil}, it means to delete all overlays in
1146the specified region. If @var{start} and/or @var{end} are omitted or 1146the specified region. If @var{start} and/or @var{end} are omitted or
1147nil, that means the beginning and end of the buffer respectively. 1147@code{nil}, that means the beginning and end of the buffer respectively.
1148Therefore, @code{(remove-overlays)} removes all the overlays in the 1148Therefore, @code{(remove-overlays)} removes all the overlays in the
1149current buffer. 1149current buffer.
1150@end defun 1150@end defun
@@ -1556,7 +1556,7 @@ This case is useful for tiling small images or image slices without
1556adding blank areas between the images. 1556adding blank areas between the images.
1557 1557
1558 If the property value is not @code{t}, it is a height spec. A height 1558 If the property value is not @code{t}, it is a height spec. A height
1559spec stands for a numeric height value; this heigh spec specifies the 1559spec stands for a numeric height value; this height spec specifies the
1560actual line height, @var{line-height}. There are several ways to 1560actual line height, @var{line-height}. There are several ways to
1561write a height spec; here's how each of them translates into a numeric 1561write a height spec; here's how each of them translates into a numeric
1562height: 1562height:
@@ -1572,7 +1572,7 @@ If the height spec is a cons of the format shown, the numeric height
1572is @var{ratio} times the height of face @var{face}. @var{ratio} can 1572is @var{ratio} times the height of face @var{face}. @var{ratio} can
1573be any type of number, or @code{nil} which means a ratio of 1. 1573be any type of number, or @code{nil} which means a ratio of 1.
1574If @var{face} is @code{t}, it refers to the current face. 1574If @var{face} is @code{t}, it refers to the current face.
1575@item (@code{nil} . @var{ratio}) 1575@item (nil . @var{ratio})
1576If the height spec is a cons of the format shown, the numeric height 1576If the height spec is a cons of the format shown, the numeric height
1577is @var{ratio} times the height of the contents of the line. 1577is @var{ratio} times the height of the contents of the line.
1578@end table 1578@end table
@@ -1583,7 +1583,7 @@ is less than @var{line-height}, Emacs adds extra vertical space above
1583the line to achieve the total height @var{line-height}. Otherwise, 1583the line to achieve the total height @var{line-height}. Otherwise,
1584@var{line-height} has no effect. 1584@var{line-height} has no effect.
1585 1585
1586 If you don't specify the @code{line-height} propery, the line's 1586 If you don't specify the @code{line-height} property, the line's
1587height consists of the contents' height plus the line spacing. 1587height consists of the contents' height plus the line spacing.
1588There are several ways to specify the line spacing for different 1588There are several ways to specify the line spacing for different
1589parts of Emacs text. 1589parts of Emacs text.
@@ -2984,7 +2984,7 @@ given time.
2984@code{overlay-arrow-variable-list}. 2984@code{overlay-arrow-variable-list}.
2985 2985
2986@defvar overlay-arrow-variable-list 2986@defvar overlay-arrow-variable-list
2987This variable's value is a list of varibles, each of which specifies 2987This variable's value is a list of variables, each of which specifies
2988the position of an overlay arrow. The variable 2988the position of an overlay arrow. The variable
2989@code{overlay-arrow-position} has its normal meaning because it is on 2989@code{overlay-arrow-position} has its normal meaning because it is on
2990this list. 2990this list.
@@ -3160,7 +3160,7 @@ results:
3160@noindent 3160@noindent
3161This illustrates that what matters is the property value for 3161This illustrates that what matters is the property value for
3162each character. If two consecutive characters have the same 3162each character. If two consecutive characters have the same
3163object as the @code{display} property value, it's irrelevent 3163object as the @code{display} property value, it's irrelevant
3164whether they got this property from a single call to 3164whether they got this property from a single call to
3165@code{put-text-property} or from two different calls. 3165@code{put-text-property} or from two different calls.
3166 3166