diff options
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/internals.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 2 |
2 files changed, 2 insertions, 2 deletions
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 |