Function: vc-read-backend

vc-read-backend is a byte-compiled function defined in vc.el.gz.

Signature

(vc-read-backend PROMPT &optional BACKENDS DEFAULT)

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
(defun vc-read-backend (prompt &optional backends default)
  (let ((backends (or backends vc-handled-backends))
        (completion-ignore-case t))
    (intern
     (completing-read prompt (mapcar #'symbol-name backends)
                      nil 'require-match nil nil default))))