; * src/emacs-module.h.in (enum emacs_funcall_exit): Fix typo.

This commit is contained in:
Philipp Stephani 2022-12-20 13:29:49 +01:00
parent fb7f3999c5
commit 8550a99378

View 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
};