From 0489f2ca5a01445d3abb39aea18d54257fedd5f1 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sat, 1 Jul 2017 19:57:41 +0200 Subject: [PATCH] Improve C++98 compatibility * src/emacs-module.h.in (emacs_funcall_exit): Lose trailing comma. C++98 doesn't allow trailing commas in enumerations. --- src/emacs-module.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emacs-module.h.in b/src/emacs-module.h.in index 339234fdb51..ec8db61f069 100644 --- a/src/emacs-module.h.in +++ b/src/emacs-module.h.in @@ -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 -- 2.39.2