diff options
author | İ. Göktuğ Kayaalp <self@gkayaalp.com> | 2017-10-10 01:43:30 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2017-10-17 13:38:04 +0300 |
commit | 5b6e59cfdb6acd7b8c02a7ce66bb9f4815876863 (patch) | |
tree | 100385fc8c7090db51aaa586effa504c9d3b9423 | |
parent | 22adeca42a9c28d5df01dcd203955191faf5de89 (diff) | |
download | emacs-5b6e59cfdb6acd7b8c02a7ce66bb9f4815876863.tar.gz |
Implement vc-default-dir-extra-headers for vc-rcs
Add a do-nothing implementation for vc-rcs to suppress the message which
the default function adds to the vc-dir buffer (Bug#28570).
* lisp/vc/vc-rcs.el (vc-rcs-dir-extra-headers): New function.
-rw-r--r-- | lisp/vc/vc-rcs.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/vc/vc-rcs.el b/lisp/vc/vc-rcs.el index db1addbecd2..84ab10b14fe 100644 --- a/lisp/vc/vc-rcs.el +++ b/lisp/vc/vc-rcs.el @@ -177,6 +177,8 @@ For a description of possible values, see `vc-check-master-templates'." (push (list frel state) result)))) (funcall update-function result))) +(defun vc-rcs-dir-extra-headers (&rest _ignore)) + (defun vc-rcs-working-revision (file) "RCS-specific version of `vc-working-revision'." (or (and vc-consult-headers |