6 lines
84 B
EmacsLisp
6 lines
84 B
EmacsLisp
|
|
(require 'cl-lib)
|
||
|
|
|
||
|
|
(defvar str "bar")
|
||
|
|
(cl-callf2 concat "foo" str)
|
||
|
|
str ;=> "foobar"
|