diff options
| author | Paul Eggert | 2020-01-17 14:23:20 -0800 |
|---|---|---|
| committer | Paul Eggert | 2020-01-17 14:24:15 -0800 |
| commit | 2391d3f45dbff087d64c522657124ebd1467b251 (patch) | |
| tree | f3500c37d93126f61b70abfeb4cd7d07786e67b8 /doc | |
| parent | e898442be343588c2be9638b1684856dbc898ab9 (diff) | |
| download | emacs-2391d3f45dbff087d64c522657124ebd1467b251.tar.gz emacs-2391d3f45dbff087d64c522657124ebd1467b251.zip | |
; spelling fixes
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/anti.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/internals.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/emacs/anti.texi b/doc/emacs/anti.texi index 1398a00b2b3..d1e67e66560 100644 --- a/doc/emacs/anti.texi +++ b/doc/emacs/anti.texi | |||
| @@ -93,7 +93,7 @@ The optional display of the fill-column indicator is no longer | |||
| 93 | supported. With the display sizes becoming smaller and smaller as you | 93 | supported. With the display sizes becoming smaller and smaller as you |
| 94 | move back in time, we feel that the display itself will always show | 94 | move back in time, we feel that the display itself will always show |
| 95 | you where to fill or wrap your text, and do this much more easily and | 95 | you where to fill or wrap your text, and do this much more easily and |
| 96 | reliably than eny such display indicator. | 96 | reliably than any such display indicator. |
| 97 | 97 | ||
| 98 | @item | 98 | @item |
| 99 | We removed the features that made visiting large files easier. Thus, | 99 | We removed the features that made visiting large files easier. Thus, |
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi index 874ecf0175f..325841d8f8a 100644 --- a/doc/lispref/internals.texi +++ b/doc/lispref/internals.texi | |||
| @@ -1411,7 +1411,7 @@ other words, if a module function wants to call Lisp functions or | |||
| 1411 | Emacs primitives, convert @code{emacs_value} objects to and from C | 1411 | Emacs primitives, convert @code{emacs_value} objects to and from C |
| 1412 | datatypes (@pxref{Module Values}), or interact with Emacs in any other | 1412 | datatypes (@pxref{Module Values}), or interact with Emacs in any other |
| 1413 | way, some call from Emacs to @code{emacs_module_init} or to a module | 1413 | way, some call from Emacs to @code{emacs_module_init} or to a module |
| 1414 | function must be in the callstack. Module function may not interact | 1414 | function must be in the call stack. Module function may not interact |
| 1415 | with Emacs while garbage collection is running; @pxref{Garbage | 1415 | with Emacs while garbage collection is running; @pxref{Garbage |
| 1416 | Collection}. They may only interact with Emacs from Lisp interpreter | 1416 | Collection}. They may only interact with Emacs from Lisp interpreter |
| 1417 | threads (including the main thread) created by Emacs; @pxref{Threads}. | 1417 | threads (including the main thread) created by Emacs; @pxref{Threads}. |
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index b52871ef70b..a8ddd45f891 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -135,7 +135,7 @@ non-@code{nil} value, it returns that value; otherwise it returns | |||
| 135 | @node Setting Hooks | 135 | @node Setting Hooks |
| 136 | @subsection Setting Hooks | 136 | @subsection Setting Hooks |
| 137 | 137 | ||
| 138 | Here's an example that adds a funtion to a mode hook to turn | 138 | Here's an example that adds a function to a mode hook to turn |
| 139 | on Auto Fill mode when in Lisp Interaction mode: | 139 | on Auto Fill mode when in Lisp Interaction mode: |
| 140 | 140 | ||
| 141 | @example | 141 | @example |