1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 08:31:09 -08:00

Improve C++98 compatibility

* src/emacs-module.h.in (emacs_funcall_exit): Lose trailing comma.
C++98 doesn't allow trailing commas in enumerations.
This commit is contained in:
Philipp Stephani 2017-07-01 19:57:41 +02:00
parent 8a9ebf352e
commit 0489f2ca5a

View file

@ -80,7 +80,7 @@ enum emacs_funcall_exit
emacs_funcall_exit_signal = 1,
/* Function has exit using `throw'. */
emacs_funcall_exit_throw = 2,
emacs_funcall_exit_throw = 2
};
struct emacs_env_25