aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorPaul Eggert2020-01-17 14:23:20 -0800
committerPaul Eggert2020-01-17 14:24:15 -0800
commit2391d3f45dbff087d64c522657124ebd1467b251 (patch)
treef3500c37d93126f61b70abfeb4cd7d07786e67b8 /doc/lispref
parente898442be343588c2be9638b1684856dbc898ab9 (diff)
downloademacs-2391d3f45dbff087d64c522657124ebd1467b251.tar.gz
emacs-2391d3f45dbff087d64c522657124ebd1467b251.zip
; spelling fixes
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/internals.texi2
-rw-r--r--doc/lispref/modes.texi2
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
1411Emacs primitives, convert @code{emacs_value} objects to and from C 1411Emacs primitives, convert @code{emacs_value} objects to and from C
1412datatypes (@pxref{Module Values}), or interact with Emacs in any other 1412datatypes (@pxref{Module Values}), or interact with Emacs in any other
1413way, some call from Emacs to @code{emacs_module_init} or to a module 1413way, some call from Emacs to @code{emacs_module_init} or to a module
1414function must be in the callstack. Module function may not interact 1414function must be in the call stack. Module function may not interact
1415with Emacs while garbage collection is running; @pxref{Garbage 1415with Emacs while garbage collection is running; @pxref{Garbage
1416Collection}. They may only interact with Emacs from Lisp interpreter 1416Collection}. They may only interact with Emacs from Lisp interpreter
1417threads (including the main thread) created by Emacs; @pxref{Threads}. 1417threads (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
139on Auto Fill mode when in Lisp Interaction mode: 139on Auto Fill mode when in Lisp Interaction mode:
140 140
141@example 141@example