]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/emacs-module.h.in (enum emacs_funcall_exit): Fix typo.
authorPhilipp Stephani <phst@google.com>
Tue, 20 Dec 2022 12:29:49 +0000 (13:29 +0100)
committerPhilipp Stephani <phst@google.com>
Tue, 20 Dec 2022 12:29:49 +0000 (13:29 +0100)
src/emacs-module.h.in

index bef89b059fc8751367cf0bb72faaa7e227891266..22096db7e85c8aceeb70f0ebb40e8b347140e893 100644 (file)
@@ -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
 };