summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2021-06-18 15:02:58 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2021-06-18 15:02:58 +0200
commitb9f339e8f8f6194001ca2f00d9d172851ca482bd (patch)
tree8aa34c2ee4ba010b8667b24331118056ee345a22 /src
parentac73d77cedf2095db198219746f1607b61b1b582 (diff)
downloademacs-b9f339e8f8f6194001ca2f00d9d172851ca482bd.tar.gz
emacs-b9f339e8f8f6194001ca2f00d9d172851ca482bd.tar.bz2
emacs-b9f339e8f8f6194001ca2f00d9d172851ca482bd.zip
; * src/comp.c (ADD_IMPORTED): Fix broken macro.
Diffstat (limited to 'src')
-rw-r--r--src/comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index 056d0860d8a..ea059526274 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -2687,7 +2687,7 @@ declare_runtime_imported_funcs (void)
Lisp_Object field_list = Qnil;
#define ADD_IMPORTED(f_name, ret_type, nargs, args) \
- { \
+ do { \
Lisp_Object name = intern_c_string (STR (f_name)); \
Lisp_Object field = \
make_mint_ptr (declare_imported_func (name, ret_type, nargs, args)); \