aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert2014-01-04 18:56:08 -0800
committerPaul Eggert2014-01-04 18:56:08 -0800
commitda5ecfa9b951691fc8bbf17f24fc8626216a706b (patch)
tree578d41e67060235d3de230b39c9326d683d77014 /doc
parent5a0f4e9062f20f26a3f3b89e60a7bf2fd136e4c0 (diff)
downloademacs-da5ecfa9b951691fc8bbf17f24fc8626216a706b.tar.gz
emacs-da5ecfa9b951691fc8bbf17f24fc8626216a706b.zip
Spelling fixes.
* lib-src/Makefile.in (regex.o): Remove reference to no-longer-used macros CONFIG_BROKETS and INHIBIT_STRING_HEADER. "BROKETS" was a misspelling anyway.... * src/nsterm.h (updateCollectionBehavior): Rename from updateCollectionBehaviour. All uses changed.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/efaq-w32.texi24
-rw-r--r--doc/misc/eshell.texi4
-rw-r--r--doc/misc/htmlfontify.texi4
-rw-r--r--doc/misc/org.texi8
-rw-r--r--doc/misc/sem-user.texi4
-rw-r--r--doc/misc/tramp.texi2
6 files changed, 23 insertions, 23 deletions
diff --git a/doc/misc/efaq-w32.texi b/doc/misc/efaq-w32.texi
index 0e846b2cadc..d9b0dd1e201 100644
--- a/doc/misc/efaq-w32.texi
+++ b/doc/misc/efaq-w32.texi
@@ -166,7 +166,7 @@ Pre-compiled versions are distributed from
166Emacs binaries are distributed as zip files, digitally 166Emacs binaries are distributed as zip files, digitally
167signed by the developer who built them. Generally most users will 167signed by the developer who built them. Generally most users will
168want the file @file{emacs-@value{EMACSVER}-bin-i386.zip}, which 168want the file @file{emacs-@value{EMACSVER}-bin-i386.zip}, which
169contains everything you need to get started. 169contains everything you need to get started.
170 170
171@cindex where to get sources 171@cindex where to get sources
172@cindex Emacs source code 172@cindex Emacs source code
@@ -290,7 +290,7 @@ Windows ports of the command line gzip and tar tools from multiple sources.
290 290
291The command to unpack a source distribution from the command line is: 291The command to unpack a source distribution from the command line is:
292@example 292@example
293tar xzf emacs-@value{EMACSVER}.tar.gz 293tar xzf emacs-@value{EMACSVER}.tar.gz
294@end example 294@end example
295 295
296If this does not work with the versions of tar and gzip that you have, 296If this does not work with the versions of tar and gzip that you have,
@@ -577,9 +577,9 @@ Message-ID: <fawg21mm4hm.fsf@@mordor.rsn.hp.com>
577Subject: Re: Re[2]: problem with caps/ctrl swap on NT 4.0 577Subject: Re: Re[2]: problem with caps/ctrl swap on NT 4.0
578@end ignore 578@end ignore
579@example 579@example
580It's a binary value that lets you map keystrokes in the low-level keyboard 580It's a binary value that lets you map keystrokes in the low-level keyboard
581drivers in NT. As a result you don't have to worry about applications 581drivers in NT. As a result you don't have to worry about applications
582bypassing mappings that you've done at a higher level (i.e. it just works). 582bypassing mappings that you've done at a higher level (i.e. it just works).
583 583
584Here's the format of the value: 584Here's the format of the value:
585 585
@@ -591,11 +591,11 @@ Here's the format of the value:
591 DWORD: mapping n 591 DWORD: mapping n
592 DWORD: 0x00000000 terminating null DWORD 592 DWORD: 0x00000000 terminating null DWORD
593 593
594Each mapping DWORD has two parts: the input scancode, and an output 594Each mapping DWORD has two parts: the input scancode, and an output
595scancode. To map scancode 0x1d (left control) to scancode 0x3a (caps 595scancode. To map scancode 0x1d (left control) to scancode 0x3a (caps
596lock), you want a value of 0x003a001d. Note that this does not swap the 596lock), you want a value of 0x003a001d. Note that this does not swap the
597keys. Using just this mapping value, both the left control and the caps 597keys. Using just this mapping value, both the left control and the caps
598lock key will behave as caps-lock. To swap, you also need to map 0x3a to 598lock key will behave as caps-lock. To swap, you also need to map 0x3a to
5990x1d, using 0x001d003a. 5990x1d, using 0x001d003a.
600 600
601This registry value is system wide, and can't be made user-specific. It 601This registry value is system wide, and can't be made user-specific. It
@@ -1357,7 +1357,7 @@ you can use @code{setbuf} and @code{setvbuf} to manipulate
1357the buffering semantics. 1357the buffering semantics.
1358 1358
1359Some programs handle this by having an explicit flag to control their 1359Some programs handle this by having an explicit flag to control their
1360buffering behaviour, typically @option{-i} for interactive. Other 1360buffering behavior, typically @option{-i} for interactive. Other
1361programs manage to detect that they are running under Emacs, by 1361programs manage to detect that they are running under Emacs, by
1362using @samp{getenv("emacs")} internally. 1362using @samp{getenv("emacs")} internally.
1363 1363
@@ -1430,7 +1430,7 @@ this discussion} for more details.
1430You can start an interactive shell in Emacs by typing @kbd{M-x shell}. 1430You can start an interactive shell in Emacs by typing @kbd{M-x shell}.
1431Emacs uses the @env{SHELL} environment variable to determine which 1431Emacs uses the @env{SHELL} environment variable to determine which
1432program to use as the shell. To instruct Emacs to use a non-default 1432program to use as the shell. To instruct Emacs to use a non-default
1433shell, you can either set this environment variable, or customize 1433shell, you can either set this environment variable, or customize
1434@code{explicit-shell-file-name}. You can also customize 1434@code{explicit-shell-file-name}. You can also customize
1435@code{shell-file-name} to change the shell that will be used by 1435@code{shell-file-name} to change the shell that will be used by
1436subprocesses that are started with @code{shell-command} and 1436subprocesses that are started with @code{shell-command} and
diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi
index 38c17c36f5a..74d859588dc 100644
--- a/doc/misc/eshell.texi
+++ b/doc/misc/eshell.texi
@@ -281,7 +281,7 @@ sudo is an alias, defined as "*sudo $*"
281If you would prefer to use the built-in commands instead of the external 281If you would prefer to use the built-in commands instead of the external
282commands, set @code{eshell-prefer-lisp-functions} to @code{t}. 282commands, set @code{eshell-prefer-lisp-functions} to @code{t}.
283 283
284Some of the built-in commands have different behaviour from their 284Some of the built-in commands have different behavior from their
285external counterparts, and some have no external counterpart. Most of 285external counterparts, and some have no external counterpart. Most of
286these will print a usage message when given the @code{--help} option. 286these will print a usage message when given the @code{--help} option.
287 287
@@ -627,7 +627,7 @@ from Bash can still use Bash-style globbing, as there are no
627incompatibilities. Most globbing is pattern-based expansion, but there 627incompatibilities. Most globbing is pattern-based expansion, but there
628is also predicate-based expansion. See 628is also predicate-based expansion. See
629@ref{Filename Generation, , , zsh, The Z Shell Manual} 629@ref{Filename Generation, , , zsh, The Z Shell Manual}
630for full syntax. To customize the syntax and behaviour of globbing in 630for full syntax. To customize the syntax and behavior of globbing in
631Eshell see the Customize@footnote{@xref{Easy Customization, , , emacs, 631Eshell see the Customize@footnote{@xref{Easy Customization, , , emacs,
632The GNU Emacs Manual}.} 632The GNU Emacs Manual}.}
633groups ``eshell-glob'' and ``eshell-pred''. 633groups ``eshell-glob'' and ``eshell-pred''.
diff --git a/doc/misc/htmlfontify.texi b/doc/misc/htmlfontify.texi
index 18e7c34a73c..3124a281676 100644
--- a/doc/misc/htmlfontify.texi
+++ b/doc/misc/htmlfontify.texi
@@ -57,7 +57,7 @@ modify this GNU manual.''
57@menu 57@menu
58* Introduction:: About Htmlfontify. 58* Introduction:: About Htmlfontify.
59* Usage & Examples:: How to use Htmlfontify. 59* Usage & Examples:: How to use Htmlfontify.
60* Customization:: Fine-tuning Htmlfontify's behaviour. 60* Customization:: Fine-tuning Htmlfontify's behavior.
61* Requirements:: External programs used by Htmlfontify. 61* Requirements:: External programs used by Htmlfontify.
62* GNU Free Documentation License:: The license for this documentation. 62* GNU Free Documentation License:: The license for this documentation.
63* Index:: Index of contents. 63* Index:: Index of contents.
@@ -820,7 +820,7 @@ which @emph{didn't} clash with @var{class} was returned. In versions
820from 0.18 onwards, each font attribute list is scored, and the 820from 0.18 onwards, each font attribute list is scored, and the
821non-conflicting list with the highest score is returned. (A specification 821non-conflicting list with the highest score is returned. (A specification
822with a class of @code{t} is considered to match any class you specify. 822with a class of @code{t} is considered to match any class you specify.
823This matches Emacs's behaviour when deciding on which face attributes to 823This matches Emacs's behavior when deciding on which face attributes to
824use, to the best of my understanding ). 824use, to the best of my understanding ).
825 825
826If @var{class} is nil, then you just get get whatever 826If @var{class} is nil, then you just get get whatever
diff --git a/doc/misc/org.texi b/doc/misc/org.texi
index be028e3d1e9..f9426aa7981 100644
--- a/doc/misc/org.texi
+++ b/doc/misc/org.texi
@@ -9952,7 +9952,7 @@ processed normally.
9952 9952
9953Contents of the included file will belong to the same structure (headline, 9953Contents of the included file will belong to the same structure (headline,
9954item) containing the @code{INCLUDE} keyword. In particular, headlines within 9954item) containing the @code{INCLUDE} keyword. In particular, headlines within
9955the file will become children of the current section. That behaviour can be 9955the file will become children of the current section. That behavior can be
9956changed by providing an additional keyword parameter, @code{:minlevel}. In 9956changed by providing an additional keyword parameter, @code{:minlevel}. In
9957that case, all headlines in the included file will be shifted so the one with 9957that case, all headlines in the included file will be shifted so the one with
9958the lowest level reaches that specified level. For example, to make a file 9958the lowest level reaches that specified level. For example, to make a file
@@ -10398,7 +10398,7 @@ can be reached by calling the dispatcher with a double @kbd{C-u} prefix
10398argument, or with @kbd{&} key from the dispatcher. 10398argument, or with @kbd{&} key from the dispatcher.
10399 10399
10400@vindex org-export-in-background 10400@vindex org-export-in-background
10401To make this behaviour the default, customize the variable 10401To make this behavior the default, customize the variable
10402@code{org-export-in-background}. 10402@code{org-export-in-background}.
10403 10403
10404@item C-b 10404@item C-b
@@ -13073,7 +13073,7 @@ channel."
13073The @code{my-ascii-src-block} function looks at the attribute above the 13073The @code{my-ascii-src-block} function looks at the attribute above the
13074element. If it isn't true, it gives hand to the @code{ascii} back-end. 13074element. If it isn't true, it gives hand to the @code{ascii} back-end.
13075Otherwise, it creates a box around the code, leaving room for the language. 13075Otherwise, it creates a box around the code, leaving room for the language.
13076A new back-end is then created. It only changes its behaviour when 13076A new back-end is then created. It only changes its behavior when
13077translating @code{src-block} type element. Now, all it takes to use the new 13077translating @code{src-block} type element. Now, all it takes to use the new
13078back-end is calling the following from an Org buffer: 13078back-end is calling the following from an Org buffer:
13079 13079
@@ -14102,7 +14102,7 @@ looked up with inheritance, regardless of the value of
14102outermost call or source block.@footnote{The deprecated syntax for default 14102outermost call or source block.@footnote{The deprecated syntax for default
14103header argument properties, using the name of the header argument as a 14103header argument properties, using the name of the header argument as a
14104property name directly, evaluates the property as seen by the corresponding 14104property name directly, evaluates the property as seen by the corresponding
14105source block definition. This behaviour has been kept for backwards 14105source block definition. This behavior has been kept for backwards
14106compatibility.} 14106compatibility.}
14107 14107
14108In the following example the value of 14108In the following example the value of
diff --git a/doc/misc/sem-user.texi b/doc/misc/sem-user.texi
index 8604d095763..b8625932f7c 100644
--- a/doc/misc/sem-user.texi
+++ b/doc/misc/sem-user.texi
@@ -983,7 +983,7 @@ If your symbol should be in the scope, but you cannot find it, then
983you may have found a language support bug in the local-variable 983you may have found a language support bug in the local-variable
984parser, or using statement parser. 984parser, or using statement parser.
985 985
986Calling @kbd{M-x bovinte} should force a reset on the scope in case 986Calling @kbd{M-x bovinate} should force a reset on the scope in case
987there is merely some bad state. 987there is merely some bad state.
988 988
989@example 989@example
@@ -1014,7 +1014,7 @@ fully qualified names. You can examine the typecache with
1014@kbd{M-x semanticdb-typecache-dump}. 1014@kbd{M-x semanticdb-typecache-dump}.
1015 1015
1016If your data types are not in the typecache, there may be some parsing 1016If your data types are not in the typecache, there may be some parsing
1017error or other bug. Calling @kbd{M-x bovinte} should force a reset on 1017error or other bug. Calling @kbd{M-x bovinate} should force a reset on
1018the typecache in case there is merely some bad state. 1018the typecache in case there is merely some bad state.
1019 1019
1020@example 1020@example
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 21891df25e9..9506c8f49c1 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -2744,7 +2744,7 @@ You will see the buffer @file{*Async Shell Command*}, containing the
2744continuous output of the @command{tail} command. 2744continuous output of the @command{tail} command.
2745 2745
2746@ifset emacs 2746@ifset emacs
2747A similar behaviour can be reached by @kbd{M-x auto-revert-tail-mode}, 2747A similar behavior can be reached by @kbd{M-x auto-revert-tail-mode},
2748if available. 2748if available.
2749@end ifset 2749@end ifset
2750 2750