[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 0489f2c 1/3: Improve C++98 compatibility
From: |
Philipp Stephani |
Subject: |
[Emacs-diffs] master 0489f2c 1/3: Improve C++98 compatibility |
Date: |
Sat, 1 Jul 2017 14:02:38 -0400 (EDT) |
branch: master
commit 0489f2ca5a01445d3abb39aea18d54257fedd5f1
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>
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 339234f..ec8db61 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