projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a9ebf3
)
Improve C++98 compatibility
author
Philipp Stephani
<phst@google.com>
Sat, 1 Jul 2017 17:57:41 +0000
(19:57 +0200)
committer
Philipp 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
patch
|
blob
|
history
diff --git
a/src/emacs-module.h.in
b/src/emacs-module.h.in
index 339234fdb5169cc6ee0e6a3680aa17d3f3c7e68c..ec8db61f0696fd1ee39b40411faee84d076c3ec9 100644
(file)
--- 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