Function: magit--version>=

magit--version>= is a byte-compiled function defined in magit-base.el.

Signature

(magit--version>= V1 V2)

Documentation

Return t if version V1 is higher (younger) than or equal to V2.

This function should be named version>= and be part of Emacs.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-base.el
(defun magit--version>= (v1 v2)
  "Return t if version V1 is higher (younger) than or equal to V2.
This function should be named `version>=' and be part of Emacs."
  (version-list-<= (version-to-list v2) (version-to-list v1)))