diff options
| author | Paul Eggert | 2014-01-04 18:56:08 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-01-04 18:56:08 -0800 |
| commit | da5ecfa9b951691fc8bbf17f24fc8626216a706b (patch) | |
| tree | 578d41e67060235d3de230b39c9326d683d77014 /doc | |
| parent | 5a0f4e9062f20f26a3f3b89e60a7bf2fd136e4c0 (diff) | |
| download | emacs-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.texi | 24 | ||||
| -rw-r--r-- | doc/misc/eshell.texi | 4 | ||||
| -rw-r--r-- | doc/misc/htmlfontify.texi | 4 | ||||
| -rw-r--r-- | doc/misc/org.texi | 8 | ||||
| -rw-r--r-- | doc/misc/sem-user.texi | 4 | ||||
| -rw-r--r-- | doc/misc/tramp.texi | 2 |
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 | |||
| 166 | Emacs binaries are distributed as zip files, digitally | 166 | Emacs binaries are distributed as zip files, digitally |
| 167 | signed by the developer who built them. Generally most users will | 167 | signed by the developer who built them. Generally most users will |
| 168 | want the file @file{emacs-@value{EMACSVER}-bin-i386.zip}, which | 168 | want the file @file{emacs-@value{EMACSVER}-bin-i386.zip}, which |
| 169 | contains everything you need to get started. | 169 | contains 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 | ||
| 291 | The command to unpack a source distribution from the command line is: | 291 | The command to unpack a source distribution from the command line is: |
| 292 | @example | 292 | @example |
| 293 | tar xzf emacs-@value{EMACSVER}.tar.gz | 293 | tar xzf emacs-@value{EMACSVER}.tar.gz |
| 294 | @end example | 294 | @end example |
| 295 | 295 | ||
| 296 | If this does not work with the versions of tar and gzip that you have, | 296 | If 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> | |||
| 577 | Subject: Re: Re[2]: problem with caps/ctrl swap on NT 4.0 | 577 | Subject: Re: Re[2]: problem with caps/ctrl swap on NT 4.0 |
| 578 | @end ignore | 578 | @end ignore |
| 579 | @example | 579 | @example |
| 580 | It's a binary value that lets you map keystrokes in the low-level keyboard | 580 | It's a binary value that lets you map keystrokes in the low-level keyboard |
| 581 | drivers in NT. As a result you don't have to worry about applications | 581 | drivers in NT. As a result you don't have to worry about applications |
| 582 | bypassing mappings that you've done at a higher level (i.e. it just works). | 582 | bypassing mappings that you've done at a higher level (i.e. it just works). |
| 583 | 583 | ||
| 584 | Here's the format of the value: | 584 | Here'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 | ||
| 594 | Each mapping DWORD has two parts: the input scancode, and an output | 594 | Each mapping DWORD has two parts: the input scancode, and an output |
| 595 | scancode. To map scancode 0x1d (left control) to scancode 0x3a (caps | 595 | scancode. To map scancode 0x1d (left control) to scancode 0x3a (caps |
| 596 | lock), you want a value of 0x003a001d. Note that this does not swap the | 596 | lock), you want a value of 0x003a001d. Note that this does not swap the |
| 597 | keys. Using just this mapping value, both the left control and the caps | 597 | keys. Using just this mapping value, both the left control and the caps |
| 598 | lock key will behave as caps-lock. To swap, you also need to map 0x3a to | 598 | lock key will behave as caps-lock. To swap, you also need to map 0x3a to |
| 599 | 0x1d, using 0x001d003a. | 599 | 0x1d, using 0x001d003a. |
| 600 | 600 | ||
| 601 | This registry value is system wide, and can't be made user-specific. It | 601 | This 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 | |||
| 1357 | the buffering semantics. | 1357 | the buffering semantics. |
| 1358 | 1358 | ||
| 1359 | Some programs handle this by having an explicit flag to control their | 1359 | Some programs handle this by having an explicit flag to control their |
| 1360 | buffering behaviour, typically @option{-i} for interactive. Other | 1360 | buffering behavior, typically @option{-i} for interactive. Other |
| 1361 | programs manage to detect that they are running under Emacs, by | 1361 | programs manage to detect that they are running under Emacs, by |
| 1362 | using @samp{getenv("emacs")} internally. | 1362 | using @samp{getenv("emacs")} internally. |
| 1363 | 1363 | ||
| @@ -1430,7 +1430,7 @@ this discussion} for more details. | |||
| 1430 | You can start an interactive shell in Emacs by typing @kbd{M-x shell}. | 1430 | You can start an interactive shell in Emacs by typing @kbd{M-x shell}. |
| 1431 | Emacs uses the @env{SHELL} environment variable to determine which | 1431 | Emacs uses the @env{SHELL} environment variable to determine which |
| 1432 | program to use as the shell. To instruct Emacs to use a non-default | 1432 | program to use as the shell. To instruct Emacs to use a non-default |
| 1433 | shell, you can either set this environment variable, or customize | 1433 | shell, 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 |
| 1436 | subprocesses that are started with @code{shell-command} and | 1436 | subprocesses 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 $*" | |||
| 281 | If you would prefer to use the built-in commands instead of the external | 281 | If you would prefer to use the built-in commands instead of the external |
| 282 | commands, set @code{eshell-prefer-lisp-functions} to @code{t}. | 282 | commands, set @code{eshell-prefer-lisp-functions} to @code{t}. |
| 283 | 283 | ||
| 284 | Some of the built-in commands have different behaviour from their | 284 | Some of the built-in commands have different behavior from their |
| 285 | external counterparts, and some have no external counterpart. Most of | 285 | external counterparts, and some have no external counterpart. Most of |
| 286 | these will print a usage message when given the @code{--help} option. | 286 | these 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 | |||
| 627 | incompatibilities. Most globbing is pattern-based expansion, but there | 627 | incompatibilities. Most globbing is pattern-based expansion, but there |
| 628 | is also predicate-based expansion. See | 628 | is also predicate-based expansion. See |
| 629 | @ref{Filename Generation, , , zsh, The Z Shell Manual} | 629 | @ref{Filename Generation, , , zsh, The Z Shell Manual} |
| 630 | for full syntax. To customize the syntax and behaviour of globbing in | 630 | for full syntax. To customize the syntax and behavior of globbing in |
| 631 | Eshell see the Customize@footnote{@xref{Easy Customization, , , emacs, | 631 | Eshell see the Customize@footnote{@xref{Easy Customization, , , emacs, |
| 632 | The GNU Emacs Manual}.} | 632 | The GNU Emacs Manual}.} |
| 633 | groups ``eshell-glob'' and ``eshell-pred''. | 633 | groups ``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 | |||
| 820 | from 0.18 onwards, each font attribute list is scored, and the | 820 | from 0.18 onwards, each font attribute list is scored, and the |
| 821 | non-conflicting list with the highest score is returned. (A specification | 821 | non-conflicting list with the highest score is returned. (A specification |
| 822 | with a class of @code{t} is considered to match any class you specify. | 822 | with a class of @code{t} is considered to match any class you specify. |
| 823 | This matches Emacs's behaviour when deciding on which face attributes to | 823 | This matches Emacs's behavior when deciding on which face attributes to |
| 824 | use, to the best of my understanding ). | 824 | use, to the best of my understanding ). |
| 825 | 825 | ||
| 826 | If @var{class} is nil, then you just get get whatever | 826 | If @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 | ||
| 9953 | Contents of the included file will belong to the same structure (headline, | 9953 | Contents of the included file will belong to the same structure (headline, |
| 9954 | item) containing the @code{INCLUDE} keyword. In particular, headlines within | 9954 | item) containing the @code{INCLUDE} keyword. In particular, headlines within |
| 9955 | the file will become children of the current section. That behaviour can be | 9955 | the file will become children of the current section. That behavior can be |
| 9956 | changed by providing an additional keyword parameter, @code{:minlevel}. In | 9956 | changed by providing an additional keyword parameter, @code{:minlevel}. In |
| 9957 | that case, all headlines in the included file will be shifted so the one with | 9957 | that case, all headlines in the included file will be shifted so the one with |
| 9958 | the lowest level reaches that specified level. For example, to make a file | 9958 | the 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 | |||
| 10398 | argument, or with @kbd{&} key from the dispatcher. | 10398 | argument, or with @kbd{&} key from the dispatcher. |
| 10399 | 10399 | ||
| 10400 | @vindex org-export-in-background | 10400 | @vindex org-export-in-background |
| 10401 | To make this behaviour the default, customize the variable | 10401 | To 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." | |||
| 13073 | The @code{my-ascii-src-block} function looks at the attribute above the | 13073 | The @code{my-ascii-src-block} function looks at the attribute above the |
| 13074 | element. If it isn't true, it gives hand to the @code{ascii} back-end. | 13074 | element. If it isn't true, it gives hand to the @code{ascii} back-end. |
| 13075 | Otherwise, it creates a box around the code, leaving room for the language. | 13075 | Otherwise, it creates a box around the code, leaving room for the language. |
| 13076 | A new back-end is then created. It only changes its behaviour when | 13076 | A new back-end is then created. It only changes its behavior when |
| 13077 | translating @code{src-block} type element. Now, all it takes to use the new | 13077 | translating @code{src-block} type element. Now, all it takes to use the new |
| 13078 | back-end is calling the following from an Org buffer: | 13078 | back-end is calling the following from an Org buffer: |
| 13079 | 13079 | ||
| @@ -14102,7 +14102,7 @@ looked up with inheritance, regardless of the value of | |||
| 14102 | outermost call or source block.@footnote{The deprecated syntax for default | 14102 | outermost call or source block.@footnote{The deprecated syntax for default |
| 14103 | header argument properties, using the name of the header argument as a | 14103 | header argument properties, using the name of the header argument as a |
| 14104 | property name directly, evaluates the property as seen by the corresponding | 14104 | property name directly, evaluates the property as seen by the corresponding |
| 14105 | source block definition. This behaviour has been kept for backwards | 14105 | source block definition. This behavior has been kept for backwards |
| 14106 | compatibility.} | 14106 | compatibility.} |
| 14107 | 14107 | ||
| 14108 | In the following example the value of | 14108 | In 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 | |||
| 983 | you may have found a language support bug in the local-variable | 983 | you may have found a language support bug in the local-variable |
| 984 | parser, or using statement parser. | 984 | parser, or using statement parser. |
| 985 | 985 | ||
| 986 | Calling @kbd{M-x bovinte} should force a reset on the scope in case | 986 | Calling @kbd{M-x bovinate} should force a reset on the scope in case |
| 987 | there is merely some bad state. | 987 | there 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 | ||
| 1016 | If your data types are not in the typecache, there may be some parsing | 1016 | If your data types are not in the typecache, there may be some parsing |
| 1017 | error or other bug. Calling @kbd{M-x bovinte} should force a reset on | 1017 | error or other bug. Calling @kbd{M-x bovinate} should force a reset on |
| 1018 | the typecache in case there is merely some bad state. | 1018 | the 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 | |||
| 2744 | continuous output of the @command{tail} command. | 2744 | continuous output of the @command{tail} command. |
| 2745 | 2745 | ||
| 2746 | @ifset emacs | 2746 | @ifset emacs |
| 2747 | A similar behaviour can be reached by @kbd{M-x auto-revert-tail-mode}, | 2747 | A similar behavior can be reached by @kbd{M-x auto-revert-tail-mode}, |
| 2748 | if available. | 2748 | if available. |
| 2749 | @end ifset | 2749 | @end ifset |
| 2750 | 2750 | ||