diff options
author | Philipp Stephani <phst@google.com> | 2022-12-20 13:29:49 +0100 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2022-12-20 13:29:49 +0100 |
commit | 8550a9937858e4524acd43015b28a42a707d26fc (patch) | |
tree | 7f31a614f97194d26bf20801bd300ba19f18a94b /src/emacs-module.h.in | |
parent | fb7f3999c59ce3a1b08bca8d8b79db885fd3550f (diff) | |
download | emacs-8550a9937858e4524acd43015b28a42a707d26fc.tar.gz emacs-8550a9937858e4524acd43015b28a42a707d26fc.tar.bz2 emacs-8550a9937858e4524acd43015b28a42a707d26fc.zip |
; * src/emacs-module.h.in (enum emacs_funcall_exit): Fix typo.
Diffstat (limited to 'src/emacs-module.h.in')
-rw-r--r-- | src/emacs-module.h.in | 2 |
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 /* Function has signaled an error using `signal'. */ emacs_funcall_exit_signal = 1, - /* Function has exit using `throw'. */ + /* Function has exited using `throw'. */ emacs_funcall_exit_throw = 2 }; |