Function: erc-networks--id-qualifying-init-symbol

erc-networks--id-qualifying-init-symbol is a byte-compiled function defined in erc-networks.el.gz.

Signature

(erc-networks--id-qualifying-init-symbol ELTS &optional LEN)

Documentation

Return symbol appropriate for network context identified by ELTS.

Use leading interval of length LEN as contributing components. Combine them with string separator erc-networks--id-sep.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-networks.el.gz
(defun erc-networks--id-qualifying-init-symbol (elts &optional len)
  "Return symbol appropriate for network context identified by ELTS.
Use leading interval of length LEN as contributing components.
Combine them with string separator `erc-networks--id-sep'."
  (when elts
    (unless len
      (setq len 1))
    (intern (mapconcat (lambda (s) (prin1-to-string s t))
                       (seq-subseq elts 0 len)
                       erc-networks--id-sep))))