mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-02 20:00:35 -08:00
allow + in lisp functions to be compiled
This commit is contained in:
parent
a580344193
commit
f867699b23
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue