Function: embark--separator

embark--separator is a byte-compiled function defined in embark.el.

Signature

(embark--separator STRINGS)

Documentation

Return a separator to join the STRINGS together.

With a prefix argument, prompt the user (unless STRINGS has 0 or
1 elements, in which case a separator is not needed).

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--separator (strings)
  "Return a separator to join the STRINGS together.
With a prefix argument, prompt the user (unless STRINGS has 0 or
1 elements, in which case a separator is not needed)."
  (if (and current-prefix-arg (cdr strings))
      (read-string "Separator: " nil 'embark-separator-history)
    "\n"))