aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorVille Skyttä2018-05-27 19:03:10 +0200
committerEli Zaretskii2018-06-01 16:33:58 +0300
commit6d2352594f4e4e17965834851547df3adaa6cd6f (patch)
treeea82455f3e2f674c288fafbb2789eb3452feeb4c /doc
parente5471b2381e885d5d214bfa09ab0c35275fc6048 (diff)
downloademacs-6d2352594f4e4e17965834851547df3adaa6cd6f.tar.gz
emacs-6d2352594f4e4e17965834851547df3adaa6cd6f.zip
Fix typos in several manuals (Bug#31610)
Copyright-paperwork-exempt: yes
Diffstat (limited to 'doc')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi6
-rw-r--r--doc/lispref/display.texi2
-rw-r--r--doc/lispref/errors.texi2
-rw-r--r--doc/misc/autotype.texi2
-rw-r--r--doc/misc/org.texi4
-rw-r--r--doc/misc/viper.texi2
-rw-r--r--doc/misc/wisent.texi2
7 files changed, 10 insertions, 10 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 67df6f208fb..a256873ab1d 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -484,7 +484,7 @@ Narrowing and Widening
484 484
485@code{car}, @code{cdr}, @code{cons}: Fundamental Functions 485@code{car}, @code{cdr}, @code{cons}: Fundamental Functions
486 486
487* Strange Names:: An historical aside: why the strange names? 487* Strange Names:: A historical aside: why the strange names?
488* car & cdr:: Functions for extracting part of a list. 488* car & cdr:: Functions for extracting part of a list.
489* cons:: Constructing a list. 489* cons:: Constructing a list.
490* nthcdr:: Calling @code{cdr} repeatedly. 490* nthcdr:: Calling @code{cdr} repeatedly.
@@ -6797,7 +6797,7 @@ will see @code{cons} as well as two variants on @code{cdr},
6797namely, @code{setcdr} and @code{nthcdr}. (@xref{copy-region-as-kill}.) 6797namely, @code{setcdr} and @code{nthcdr}. (@xref{copy-region-as-kill}.)
6798 6798
6799@menu 6799@menu
6800* Strange Names:: An historical aside: why the strange names? 6800* Strange Names:: A historical aside: why the strange names?
6801* car & cdr:: Functions for extracting part of a list. 6801* car & cdr:: Functions for extracting part of a list.
6802* cons:: Constructing a list. 6802* cons:: Constructing a list.
6803* nthcdr:: Calling @code{cdr} repeatedly. 6803* nthcdr:: Calling @code{cdr} repeatedly.
@@ -7678,7 +7678,7 @@ The first part of the code looks like this:
7678@end smallexample 7678@end smallexample
7679 7679
7680@noindent 7680@noindent
7681@code{char-table-p} is an hitherto unseen function. It determines 7681@code{char-table-p} is a hitherto unseen function. It determines
7682whether its argument is a character table. When it is, it sets the 7682whether its argument is a character table. When it is, it sets the
7683character passed to @code{zap-to-char} to one of them, if that 7683character passed to @code{zap-to-char} to one of them, if that
7684character exists, or to the character itself. (This becomes important 7684character exists, or to the character itself. (This becomes important
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 13a25af02c8..ce7ec3ac10d 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -1048,7 +1048,7 @@ commands operate as if that portion did not exist, allowing a single
1048@code{next-line} command to skip any number of hidden lines. 1048@code{next-line} command to skip any number of hidden lines.
1049However, character movement commands (such as @code{forward-char}) do 1049However, character movement commands (such as @code{forward-char}) do
1050not skip the hidden portion, and it is possible (if tricky) to insert 1050not skip the hidden portion, and it is possible (if tricky) to insert
1051or delete text in an hidden portion. 1051or delete text in a hidden portion.
1052 1052
1053In the examples below, we show the @emph{display appearance} of the 1053In the examples below, we show the @emph{display appearance} of the
1054buffer @code{foo}, which changes with the value of 1054buffer @code{foo}, which changes with the value of
diff --git a/doc/lispref/errors.texi b/doc/lispref/errors.texi
index 5054172ff3b..a0e32c5631c 100644
--- a/doc/lispref/errors.texi
+++ b/doc/lispref/errors.texi
@@ -11,7 +11,7 @@
11by concept. The list includes each symbol's message and a cross reference 11by concept. The list includes each symbol's message and a cross reference
12to a description of how the error can occur. 12to a description of how the error can occur.
13 13
14 Each error symbol has an set of parent error conditions that is a 14 Each error symbol has a set of parent error conditions that is a
15list of symbols. Normally this list includes the error symbol itself 15list of symbols. Normally this list includes the error symbol itself
16and the symbol @code{error}. Occasionally it includes additional 16and the symbol @code{error}. Occasionally it includes additional
17symbols, which are intermediate classifications, narrower than 17symbols, which are intermediate classifications, narrower than
diff --git a/doc/misc/autotype.texi b/doc/misc/autotype.texi
index 3d61d24fa9d..7e2476c225d 100644
--- a/doc/misc/autotype.texi
+++ b/doc/misc/autotype.texi
@@ -214,7 +214,7 @@ have been omitted.)
214@cindex skeleton language 214@cindex skeleton language
215 215
216@findex skeleton-insert 216@findex skeleton-insert
217 Skeletons are an shorthand extension to the Lisp language, where various 217 Skeletons are a shorthand extension to the Lisp language, where various
218atoms directly perform either actions on the current buffer or rudimentary 218atoms directly perform either actions on the current buffer or rudimentary
219flow control mechanisms. Skeletons are interpreted by the function 219flow control mechanisms. Skeletons are interpreted by the function
220@code{skeleton-insert}. 220@code{skeleton-insert}.
diff --git a/doc/misc/org.texi b/doc/misc/org.texi
index 08ba33605e6..88cdb5f951b 100644
--- a/doc/misc/org.texi
+++ b/doc/misc/org.texi
@@ -5136,7 +5136,7 @@ that Org can parse this line correctly:
5136 5136
5137In this example, @samp{GTD} is the @emph{group tag} and it is related to two 5137In this example, @samp{GTD} is the @emph{group tag} and it is related to two
5138other tags: @samp{Control}, @samp{Persp}. Defining @samp{Control} and 5138other tags: @samp{Control}, @samp{Persp}. Defining @samp{Control} and
5139@samp{Persp} as group tags creates an hierarchy of tags: 5139@samp{Persp} as group tags creates a hierarchy of tags:
5140 5140
5141@example 5141@example
5142#+TAGS: [ Control : Context Task ] 5142#+TAGS: [ Control : Context Task ]
@@ -11180,7 +11180,7 @@ Org exports text in this block only when using ASCII back-end.
11180@cindex horizontal rules, in ASCII export 11180@cindex horizontal rules, in ASCII export
11181 11181
11182ASCII back-end recognizes only one attribute, @code{:width}, which specifies 11182ASCII back-end recognizes only one attribute, @code{:width}, which specifies
11183the width of an horizontal rule in number of characters. The keyword and 11183the width of a horizontal rule in number of characters. The keyword and
11184syntax for specifying widths is: 11184syntax for specifying widths is:
11185 11185
11186@example 11186@example
diff --git a/doc/misc/viper.texi b/doc/misc/viper.texi
index 19d592f3e87..e67734bc01c 100644
--- a/doc/misc/viper.texi
+++ b/doc/misc/viper.texi
@@ -4330,7 +4330,7 @@ Same as @code{tabstop}, but affects all buffers.
4330@cindex auto fill 4330@cindex auto fill
4331@cindex word wrap 4331@cindex word wrap
4332wrapmargin: In append mode Vi automatically 4332wrapmargin: In append mode Vi automatically
4333puts a <lf> whenever there is a <sp> or <ht> 4333puts an <lf> whenever there is an <sp> or <ht>
4334within <wm> columns from the right margin. 4334within <wm> columns from the right margin.
4335@item wrapscan 4335@item wrapscan
4336@itemx ws 4336@itemx ws
diff --git a/doc/misc/wisent.texi b/doc/misc/wisent.texi
index 2dffa089da5..12bb09c7b25 100644
--- a/doc/misc/wisent.texi
+++ b/doc/misc/wisent.texi
@@ -1937,7 +1937,7 @@ rule:
1937@end example 1937@end example
1938 1938
1939Set the @code{reparse-symbol} property of the expanded tag to 1939Set the @code{reparse-symbol} property of the expanded tag to
1940@samp{rule}. A important consequence is that: 1940@samp{rule}. An important consequence is that:
1941 1941
1942@strong{Every nonterminal having any rule that calls @code{EXPANDTAG} 1942@strong{Every nonterminal having any rule that calls @code{EXPANDTAG}
1943in a semantic action, should be declared as a start symbol!} 1943in a semantic action, should be declared as a start symbol!}