aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2017-07-01 19:57:41 +0200
committerPhilipp Stephani2017-07-01 20:02:24 +0200
commit0489f2ca5a01445d3abb39aea18d54257fedd5f1 (patch)
tree5357fc8e8db3689fd8d15e4235ad51ca8aca8e6a /src
parent8a9ebf352e01816e33541873d77568fe2dfbe1fb (diff)
downloademacs-0489f2ca5a01445d3abb39aea18d54257fedd5f1.tar.gz
emacs-0489f2ca5a01445d3abb39aea18d54257fedd5f1.zip
Improve C++98 compatibility
* src/emacs-module.h.in (emacs_funcall_exit): Lose trailing comma. C++98 doesn't allow trailing commas in enumerations.
Diffstat (limited to 'src')
-rw-r--r--src/emacs-module.h.in2
1 files changed, 1 insertions, 1 deletions
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
80 emacs_funcall_exit_signal = 1, 80 emacs_funcall_exit_signal = 1,
81 81
82 /* Function has exit using `throw'. */ 82 /* Function has exit using `throw'. */
83 emacs_funcall_exit_throw = 2, 83 emacs_funcall_exit_throw = 2
84}; 84};
85 85
86struct emacs_env_25 86struct emacs_env_25