* lisp/vc/vc-hooks.el (vc-mode): Give a body to the function (bug#69387)

This commit is contained in:
Stefan Monnier 2024-02-25 13:18:08 -05:00
parent e02c4a864f
commit c6f2add964

View file

@ -186,7 +186,8 @@ revision number and lock status."
This minor mode is automatically activated whenever you visit a file under
control of one of the revision control systems in `vc-handled-backends'.
VC commands are globally reachable under the prefix \\[vc-prefix-map]:
\\{vc-prefix-map}")
\\{vc-prefix-map}"
nil)
(defmacro vc-error-occurred (&rest body)
`(condition-case nil (progn ,@body nil) (error t)))