Function: dash--match-make-source-symbol

dash--match-make-source-symbol is a byte-compiled function defined in dash.el.

Signature

(dash--match-make-source-symbol)

Documentation

Generate a new dash-source symbol.

All returned symbols are guaranteed to be unique.

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun dash--match-make-source-symbol ()
  "Generate a new dash-source symbol.

All returned symbols are guaranteed to be unique."
  (prog1 (make-symbol (format "--dash-source-%d--" dash--source-counter))
    (setq dash--source-counter (1+ dash--source-counter))))