Function: concat
concat is a function defined in fns.c.
Signature
(concat &rest SEQUENCES)
Documentation
Concatenate all the arguments and make the result a string.
The result is a string whose elements are the elements of all the arguments. Each argument may be a string or a list or vector of characters (integers).
Values of the composition property of the result are not guaranteed
to be eq.
Other relevant functions are documented in the string group.
Probably introduced at or before Emacs version 19.20.
Shortdoc
;; string
(concat "foo" "bar" "zot")
=> "foobarzot"
Source Code
// Defined in /usr/src/emacs/src/fns.c
{
return concat (nargs, args, Lisp_String, 0);
}