Function: vc-git--make-button-text
vc-git--make-button-text is a byte-compiled function defined in
vc-git.el.gz.
Signature
(vc-git--make-button-text SHOW COUNT1 COUNT2)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git--make-button-text (show count1 count2)
(propertize
(if show
(format "Show all stashes (%s)" count2)
(if (= count1 count2)
(format "Hide all stashes (%s)" count2)
(format "Show %s stash%s (of %s)" count1 (if (= count1 1) "" "es") count2)))
'keymap vc-git-stash-button-map))