Here is how you join a list of strings in elisp:
(mapconcat (lambda (x) x) load-path "\n")
It is equivalent to this Python code:
'\n'.join(stringlist)
Here is how you join a list of strings in elisp:
(mapconcat (lambda (x) x) load-path "\n")
It is equivalent to this Python code:
Inga kommentarer:
Skicka en kommentar