diff options
Diffstat (limited to 'lisp/vc/vc-git.el')
| -rw-r--r-- | lisp/vc/vc-git.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 9ec45c59893..707fc7cfc07 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -1723,7 +1723,7 @@ This requires git 1.8.4 or later, for the \"-L\" option of \"git log\"." | |||
| 1723 | "^refs/\\(heads\\|tags\\|remotes\\)/\\(.*\\)$"))) | 1723 | "^refs/\\(heads\\|tags\\|remotes\\)/\\(.*\\)$"))) |
| 1724 | (while (re-search-forward regexp nil t) | 1724 | (while (re-search-forward regexp nil t) |
| 1725 | (push (match-string 2) table)))) | 1725 | (push (match-string 2) table)))) |
| 1726 | table)) | 1726 | (nreverse table))) |
| 1727 | 1727 | ||
| 1728 | (defun vc-git-revision-completion-table (files) | 1728 | (defun vc-git-revision-completion-table (files) |
| 1729 | (letrec ((table (lazy-completion-table | 1729 | (letrec ((table (lazy-completion-table |