As used for instance in this macro definition:
(defmacro with-eval-after-load-feature (feature &rest body) (declare (indent 1) (debug t)) (let* ((fea
It's used for splicing in backquoted expressions. See C-h i g (elisp) Backquote RET. For example:
C-h i g (elisp) Backquote RET
elisp> `(1 2 ,(list 3 4)) ; no splicing => nested list (1 2 (3 4)) elisp> `(1 2 ,@(list 3 4)) ; splicing => flat list (1 2 3 4)