From f867699b23ad012ad71f08f88ecf3e0e8df045da Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Mon, 10 Jun 2019 10:33:25 +0200 Subject: [PATCH] allow + in lisp functions to be compiled --- src/comp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/comp.c b/src/comp.c index 7de222b5b2b..ede417c794f 100644 --- a/src/comp.c +++ b/src/comp.c @@ -1540,7 +1540,8 @@ DEFUN ("native-compile", Fnative_compile, Snative_compile, char *c = c_f_name; while (*c) { - if (*c == '-') + if (*c == '-' || + *c == '+') *c = '_'; ++c; } -- 2.39.5