diff options
| author | Juri Linkov | 2023-11-06 09:27:48 +0200 |
|---|---|---|
| committer | Juri Linkov | 2023-11-06 09:27:48 +0200 |
| commit | b52849594668799a40112e31d2086c4a6d966f94 (patch) | |
| tree | 06bf92bcc7c6ffc0345e00bca9cad02337b6a05d | |
| parent | de380adb64688455ef315ea807622de25e385c44 (diff) | |
| download | emacs-b52849594668799a40112e31d2086c4a6d966f94.tar.gz emacs-b52849594668799a40112e31d2086c4a6d966f94.zip | |
* lisp/vc/vc-git.el (vc-git-revision-table): Reverse the table (bug#64656).
| -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 |