Function: avy-candidate-end

avy-candidate-end is a byte-compiled function defined in avy.el.

Signature

(avy-candidate-end LEAF)

Documentation

Return the end position for LEAF.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy-candidate-end (leaf)
  "Return the end position for LEAF."
  (cond ((numberp leaf)
         leaf)
        ((consp (car leaf))
         (cdar leaf))
        (t
         (car leaf))))