]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve C++98 compatibility
authorPhilipp Stephani <phst@google.com>
Sat, 1 Jul 2017 17:57:41 +0000 (19:57 +0200)
committerPhilipp Stephani <phst@google.com>
Sat, 1 Jul 2017 18:02:24 +0000 (20:02 +0200)
* 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

index 339234fdb5169cc6ee0e6a3680aa17d3f3c7e68c..ec8db61f0696fd1ee39b40411faee84d076c3ec9 100644 (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