aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2022-12-20 13:29:49 +0100
committerPhilipp Stephani2022-12-20 13:29:49 +0100
commit8550a9937858e4524acd43015b28a42a707d26fc (patch)
tree7f31a614f97194d26bf20801bd300ba19f18a94b /src
parentfb7f3999c59ce3a1b08bca8d8b79db885fd3550f (diff)
downloademacs-8550a9937858e4524acd43015b28a42a707d26fc.tar.gz
emacs-8550a9937858e4524acd43015b28a42a707d26fc.zip
; * src/emacs-module.h.in (enum emacs_funcall_exit): Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/emacs-module.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs-module.h.in b/src/emacs-module.h.in
index bef89b059fc..22096db7e85 100644
--- a/src/emacs-module.h.in
+++ b/src/emacs-module.h.in
@@ -116,7 +116,7 @@ enum emacs_funcall_exit
116 /* Function has signaled an error using `signal'. */ 116 /* Function has signaled an error using `signal'. */
117 emacs_funcall_exit_signal = 1, 117 emacs_funcall_exit_signal = 1,
118 118
119 /* Function has exit using `throw'. */ 119 /* Function has exited using `throw'. */
120 emacs_funcall_exit_throw = 2 120 emacs_funcall_exit_throw = 2
121}; 121};
122 122