emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/xeft 8b3e653f6e 15/55: Really fix the nonexcept qualifi


From: ELPA Syncer
Subject: [elpa] externals/xeft 8b3e653f6e 15/55: Really fix the nonexcept qualifier
Date: Fri, 13 Jan 2023 23:58:37 -0500 (EST)

branch: externals/xeft
commit 8b3e653f6e6bfa48032bf31940fa0da3cfb217b2
Author: Yuan Fu <casouri@gmail.com>
Commit: Yuan Fu <casouri@gmail.com>

    Really fix the nonexcept qualifier
    
    * xeft-module.cc (define_function):
---
 xeft-module.cc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/xeft-module.cc b/xeft-module.cc
index 36752304de..899b514b2a 100644
--- a/xeft-module.cc
+++ b/xeft-module.cc
@@ -322,12 +322,13 @@ NILP (emacs_env *env, emacs_value val)
 
 typedef emacs_value (*emacs_subr) (emacs_env *env,
                                    ptrdiff_t nargs, emacs_value *args,
-                                   void *data) EMACS_NOEXCEPT;
+                                   void *data);
 
 static void
 define_function
 (emacs_env *env, const char *name, ptrdiff_t min_arity,
- ptrdiff_t max_arity, emacs_subr function, const char *documentation)
+ ptrdiff_t max_arity, emacs_subr function EMACS_NOEXCEPT,
+ const char *documentation)
 {
   emacs_value fn = env->make_function
     (env, min_arity, max_arity, function, documentation, NULL);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]