aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert2019-12-10 20:04:36 -0800
committerPaul Eggert2019-12-10 20:05:49 -0800
commitb0f20651e3cbb8a66f11ffae4c18634019c20cd4 (patch)
tree067bcb8fa529b4afee6d189f409faf16bd437810 /doc
parent0940296ebe56ebdf9c32e94191d4f0b18006a910 (diff)
downloademacs-b0f20651e3cbb8a66f11ffae4c18634019c20cd4.tar.gz
emacs-b0f20651e3cbb8a66f11ffae4c18634019c20cd4.zip
; Spelling fixes
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/display.texi8
-rw-r--r--doc/lispref/searching.texi4
-rw-r--r--doc/lispref/windows.texi2
-rw-r--r--doc/misc/dired-x.texi2
-rw-r--r--doc/misc/org.texi4
5 files changed, 10 insertions, 10 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 7f77d11d928..06032729a50 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -5917,7 +5917,7 @@ Draw vertical lines.
5917@deffn Command curveto coordinate-sets 5917@deffn Command curveto coordinate-sets
5918Using the first element in @var{coordinate-sets}, draw a cubic Bézier 5918Using the first element in @var{coordinate-sets}, draw a cubic Bézier
5919curve from the current point. If there are multiple coordinate sets, 5919curve from the current point. If there are multiple coordinate sets,
5920draw a polybézier. Each coordinate set is a list of the form 5920draw a polybezier. Each coordinate set is a list of the form
5921@code{(@var{x1} @var{y1} @var{x2} @var{y2} @var{x} @var{y})}, where 5921@code{(@var{x1} @var{y1} @var{x2} @var{y2} @var{x} @var{y})}, where
5922@w{(@var{x}, @var{y})} is the curve’s end point. @w{(@var{x1}, 5922@w{(@var{x}, @var{y})} is the curve’s end point. @w{(@var{x1},
5923@var{y1})} and @w{(@var{x2}, @var{y2})} are control points at the 5923@var{y1})} and @w{(@var{x2}, @var{y2})} are control points at the
@@ -5934,7 +5934,7 @@ beginning and at the end, respectively.
5934@deffn Command smooth-curveto coordinate-sets 5934@deffn Command smooth-curveto coordinate-sets
5935Using the first element in @var{coordinate-sets}, draw a cubic Bézier 5935Using the first element in @var{coordinate-sets}, draw a cubic Bézier
5936curve from the current point. If there are multiple coordinate sets, 5936curve from the current point. If there are multiple coordinate sets,
5937draw a polybézier. Each coordinate set is a list of the form 5937draw a polybezier. Each coordinate set is a list of the form
5938@code{(@var{x2} @var{y2} @var{x} @var{y})}, where @w{(@var{x}, 5938@code{(@var{x2} @var{y2} @var{x} @var{y})}, where @w{(@var{x},
5939@var{y})} is the curve’s end point and @w{(@var{x2}, @var{y2})} is the 5939@var{y})} is the curve’s end point and @w{(@var{x2}, @var{y2})} is the
5940corresponding control point. The first control point is the 5940corresponding control point. The first control point is the
@@ -5954,7 +5954,7 @@ coincides with the current point.
5954@deffn Command quadratic-bezier-curveto coordinate-sets 5954@deffn Command quadratic-bezier-curveto coordinate-sets
5955Using the first element in @var{coordinate-sets}, draw a quadratic 5955Using the first element in @var{coordinate-sets}, draw a quadratic
5956Bézier curve from the current point. If there are multiple coordinate 5956Bézier curve from the current point. If there are multiple coordinate
5957sets, draw a polybézier. Each coordinate set is a list of the form 5957sets, draw a polybezier. Each coordinate set is a list of the form
5958@code{(@var{x1} @var{y1} @var{x} @var{y})}, where @w{(@var{x}, 5958@code{(@var{x1} @var{y1} @var{x} @var{y})}, where @w{(@var{x},
5959@var{y})} is the curve’s end point and @w{(@var{x1}, @var{y1})} is the 5959@var{y})} is the curve’s end point and @w{(@var{x1}, @var{y1})} is the
5960control point. 5960control point.
@@ -5972,7 +5972,7 @@ control point.
5972@deffn Command smooth-quadratic-bezier-curveto coordinate-sets 5972@deffn Command smooth-quadratic-bezier-curveto coordinate-sets
5973Using the first element in @var{coordinate-sets}, draw a quadratic 5973Using the first element in @var{coordinate-sets}, draw a quadratic
5974Bézier curve from the current point. If there are multiple coordinate 5974Bézier curve from the current point. If there are multiple coordinate
5975sets, draw a polybézier. Each coordinate set is a list of the form 5975sets, draw a polybezier. Each coordinate set is a list of the form
5976@code{(@var{x} @var{y})}, where @w{(@var{x}, @var{y})} is the curve’s 5976@code{(@var{x} @var{y})}, where @w{(@var{x}, @var{y})} is the curve’s
5977end point. The control point is the reflection of the control point 5977end point. The control point is the reflection of the control point
5978of the previous command relative to the current point, if that command 5978of the previous command relative to the current point, if that command
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index 5bf3c5b067f..bf18f80f63f 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -1551,7 +1551,7 @@ notation, @pxref{Extending Rx}.
1551@subsubsection Defining new @code{rx} forms 1551@subsubsection Defining new @code{rx} forms
1552 1552
1553The @code{rx} notation can be extended by defining new symbols and 1553The @code{rx} notation can be extended by defining new symbols and
1554parametrised forms in terms of other @code{rx} expressions. This is 1554parameterized forms in terms of other @code{rx} expressions. This is
1555handy for sharing parts between several regexps, and for making 1555handy for sharing parts between several regexps, and for making
1556complex ones easier to build and understand by putting them together 1556complex ones easier to build and understand by putting them together
1557from smaller pieces. 1557from smaller pieces.
@@ -1608,7 +1608,7 @@ defined as a plain symbol to be replaced with @var{rx-form}. Example:
1608@end example 1608@end example
1609 1609
1610If @var{arglist} is present, it must be a list of zero or more 1610If @var{arglist} is present, it must be a list of zero or more
1611argument names, and @var{name} is then defined as a parametrised form. 1611argument names, and @var{name} is then defined as a parameterized form.
1612When used in an @code{rx} expression as @code{(@var{name} @var{arg}@dots{})}, 1612When used in an @code{rx} expression as @code{(@var{name} @var{arg}@dots{})},
1613each @var{arg} will replace the corresponding argument name inside 1613each @var{arg} will replace the corresponding argument name inside
1614@var{rx-form}. 1614@var{rx-form}.
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index fdba259bf71..9ddd69ab7e7 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -2874,7 +2874,7 @@ Ordering}).
2874A major client of this is @code{display-buffer-reuse-window}, but all 2874A major client of this is @code{display-buffer-reuse-window}, but all
2875other action functions that try to reuse a window are affected as 2875other action functions that try to reuse a window are affected as
2876well. @code{display-buffer-in-previous-window} consults it when 2876well. @code{display-buffer-in-previous-window} consults it when
2877searching for a window that previosuly displayed the buffer on another 2877searching for a window that previously displayed the buffer on another
2878frame. 2878frame.
2879 2879
2880@vindex inhibit-switch-frame@r{, a buffer display action alist entry} 2880@vindex inhibit-switch-frame@r{, a buffer display action alist entry}
diff --git a/doc/misc/dired-x.texi b/doc/misc/dired-x.texi
index f6f1a3ce485..2973dcc5b25 100644
--- a/doc/misc/dired-x.texi
+++ b/doc/misc/dired-x.texi
@@ -376,7 +376,7 @@ case-insensitive.
376@defvar dired-omit-localp 376@defvar dired-omit-localp
377This variable determines the @var{localp} argument 377This variable determines the @var{localp} argument
378@code{dired-omit-expunge} passes to @code{dired-get-filename}. If it 378@code{dired-omit-expunge} passes to @code{dired-get-filename}. If it
379is @code{no-dir}, teh default, omitting is much faster, but you can 379is @code{no-dir}, the default, omitting is much faster, but you can
380only match against the non-directory part of the file name. Set it to 380only match against the non-directory part of the file name. Set it to
381@code{nil} if you need to match the whole file name or @code{t} to 381@code{nil} if you need to match the whole file name or @code{t} to
382match the file name relative to the buffer's top-level directory. 382match the file name relative to the buffer's top-level directory.
diff --git a/doc/misc/org.texi b/doc/misc/org.texi
index 7866fcfd5f6..4d4ca40061d 100644
--- a/doc/misc/org.texi
+++ b/doc/misc/org.texi
@@ -8641,7 +8641,7 @@ image @samp{1.jpg}, since the link is inside a sub-heading to @samp{Chapter
8641 8641
8642Inheritance works the same way for both @samp{ID} and @samp{DIR} property. If 8642Inheritance works the same way for both @samp{ID} and @samp{DIR} property. If
8643both properties are defined on the same headline then @samp{DIR} takes 8643both properties are defined on the same headline then @samp{DIR} takes
8644precedance. This is also true if inheritance is enabled. If @samp{DIR} 8644precedence. This is also true if inheritance is enabled. If @samp{DIR}
8645is inherited from a parent node in the outline, that property still 8645is inherited from a parent node in the outline, that property still
8646takes precedence over an @samp{ID} property defined on the node itself. 8646takes precedence over an @samp{ID} property defined on the node itself.
8647 8647
@@ -21389,7 +21389,7 @@ Before updating a dynamic block, Org removes content between the
21389previous content of the dynamic block becomes erased from the buffer 21389previous content of the dynamic block becomes erased from the buffer
21390and appended to the plist under @code{:content}. 21390and appended to the plist under @code{:content}.
21391 21391
21392The syntax for naming a writer function with a dynamic block labelled 21392The syntax for naming a writer function with a dynamic block labeled
21393@samp{myblock} is: @code{org-dblock-write:myblock}. 21393@samp{myblock} is: @code{org-dblock-write:myblock}.
21394 21394
21395The following is an example of a dynamic block and a block writer function 21395The following is an example of a dynamic block and a block writer function