@@ -276,13 +276,11 @@ followed by a newline.
276276When @code{inhibit-message} is non-@code{nil}, no message will be displayed
277277in the echo area, it will only be logged to @samp{*Messages*}.
278278
279- If the minibuffer is active, it uses the @code{minibuffer-message}
280- function to display the message temporarily at the end of the
281- minibuffer (@pxref{Minibuffer Misc}).
282-
283279If @var{format-string} is @code{nil} or the empty string,
284280@code{message} clears the echo area; if the echo area has been
285- expanded automatically, this brings it back to its normal size.
281+ expanded automatically, this brings it back to its normal size. If
282+ the minibuffer is active, this brings the minibuffer contents back
283+ onto the screen immediately.
286284
287285@example
288286@group
@@ -2499,9 +2497,12 @@ space between end of line and edge of the window using this face, or
24992497@code{nil} to not use this face for the space between the end of the
25002498line and the edge of the window. When Emacs merges several faces for
25012499displaying the empty space beyond end of line, only those faces with
2502- @code{:extend} non-@code{nil} will be merged. By default, only
2503- @code{region} and @code{hl-line} faces have this attribute set to
2504- @code{t}.
2500+ @code{:extend} non-@code{nil} will be merged. By default, only a
2501+ small number of faces, notably, @code{region}, have this attribute
2502+ set. This attribute is different from the others in that when a theme
2503+ doesn't specify an explicit value for a face, the value from the
2504+ original face definition by @code{defface} is inherited
2505+ (@pxref{Defining Faces}).
25052506
25062507@end table
25072508
@@ -4913,7 +4914,7 @@ Recursive display specifications are not supported---@var{string}'s
49134914@code{display} properties, if any, are not used.
49144915
49154916@item (image . @var{image-props})
4916- This kind of display specification is an image descriptor (@pxref{Images }).
4917+ This kind of display specification is an image descriptor (@pxref{Image Descriptors }).
49174918When used as a display specification, it means to display the image
49184919instead of the text that has the display specification.
49194920
@@ -5619,7 +5620,7 @@ area from the left of the original image, and if negative the offset
56195620from the right. If @var{y} is a positive number it specifies the
56205621offset from the top of the original image, and if negative from the
56215622bottom. If @var{x} or @var{y} are @code{nil} or unspecified the crop
5622- area will be centred on the original image.
5623+ area will be centered on the original image.
56235624
56245625If the crop area is outside or overlaps the edge of the image it will
56255626be reduced to exclude any areas outside of the image. This means it
@@ -5914,7 +5915,7 @@ Draw vertical lines.
59145915@deffn Command curveto coordinate-sets
59155916Using the first element in @var{coordinate-sets}, draw a cubic Bézier
59165917curve from the current point. If there are multiple coordinate sets,
5917- draw a polybézier . Each coordinate set is a list of the form
5918+ draw a polybezier . Each coordinate set is a list of the form
59185919@code{(@var{x1} @var{y1} @var{x2} @var{y2} @var{x} @var{y})}, where
59195920@w{(@var{x}, @var{y})} is the curve’s end point. @w{(@var{x1},
59205921@var{y1})} and @w{(@var{x2}, @var{y2})} are control points at the
@@ -5931,7 +5932,7 @@ beginning and at the end, respectively.
59315932@deffn Command smooth-curveto coordinate-sets
59325933Using the first element in @var{coordinate-sets}, draw a cubic Bézier
59335934curve from the current point. If there are multiple coordinate sets,
5934- draw a polybézier . Each coordinate set is a list of the form
5935+ draw a polybezier . Each coordinate set is a list of the form
59355936@code{(@var{x2} @var{y2} @var{x} @var{y})}, where @w{(@var{x},
59365937@var{y})} is the curve’s end point and @w{(@var{x2}, @var{y2})} is the
59375938corresponding control point. The first control point is the
@@ -5951,7 +5952,7 @@ coincides with the current point.
59515952@deffn Command quadratic-bezier-curveto coordinate-sets
59525953Using the first element in @var{coordinate-sets}, draw a quadratic
59535954Bézier curve from the current point. If there are multiple coordinate
5954- sets, draw a polybézier . Each coordinate set is a list of the form
5955+ sets, draw a polybezier . Each coordinate set is a list of the form
59555956@code{(@var{x1} @var{y1} @var{x} @var{y})}, where @w{(@var{x},
59565957@var{y})} is the curve’s end point and @w{(@var{x1}, @var{y1})} is the
59575958control point.
@@ -5969,7 +5970,7 @@ control point.
59695970@deffn Command smooth-quadratic-bezier-curveto coordinate-sets
59705971Using the first element in @var{coordinate-sets}, draw a quadratic
59715972Bézier curve from the current point. If there are multiple coordinate
5972- sets, draw a polybézier . Each coordinate set is a list of the form
5973+ sets, draw a polybezier . Each coordinate set is a list of the form
59735974@code{(@var{x} @var{y})}, where @w{(@var{x}, @var{y})} is the curve’s
59745975end point. The control point is the reflection of the control point
59755976of the previous command relative to the current point, if that command
0 commit comments