Function: vc--safe-branch-regexps-p
vc--safe-branch-regexps-p is a byte-compiled function defined in
vc-hooks.el.gz.
Signature
(vc--safe-branch-regexps-p VAL)
Documentation
Return non-nil if VAL is a safe local value for \+vc-*-branch-regexps.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-hooks.el.gz
(defun vc--safe-branch-regexps-p (val)
"Return non-nil if VAL is a safe local value for \\+`vc-*-branch-regexps'."
(or (eq val t)
(and (listp val)
(all (lambda (elt)
(or (symbolp elt) (stringp elt)))
val))))