diff options
| author | Philipp Stephani | 2017-07-01 19:57:41 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2017-07-01 20:02:24 +0200 |
| commit | 0489f2ca5a01445d3abb39aea18d54257fedd5f1 (patch) | |
| tree | 5357fc8e8db3689fd8d15e4235ad51ca8aca8e6a /src | |
| parent | 8a9ebf352e01816e33541873d77568fe2dfbe1fb (diff) | |
| download | emacs-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.in | 2 |
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 | ||
| 86 | struct emacs_env_25 | 86 | struct emacs_env_25 |