Function: evil-contract
evil-contract is a byte-compiled function defined in evil-common.el.
Signature
(evil-contract BEG END TYPE &rest PROPERTIES)
Documentation
Contract BEG and END as TYPE with PROPERTIES.
Return a list (BEG END TYPE PROPERTIES ...), where the tail may contain a property list.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-contract (beg end type &rest properties)
"Contract BEG and END as TYPE with PROPERTIES.
Return a list (BEG END TYPE PROPERTIES ...), where the tail
may contain a property list."
(apply #'evil-transform :contract beg end type properties))