diff options
author | Tassilo Horn <tsdh@gnu.org> | 2020-06-15 08:56:11 +0200 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2020-06-15 08:56:11 +0200 |
commit | 2e80328ba683e6205cd65bd3fb69da2563183e66 (patch) | |
tree | 502f9c2c403f784b3d73c2da47e291eef1f2e4ac /lisp/vc/vc-svn.el | |
parent | 4f92cf14f395577572d451c0488ade952bc3cbaa (diff) | |
download | emacs-2e80328ba683e6205cd65bd3fb69da2563183e66.tar.gz |
Add optional remote-name argument to VC repository-url command
* lisp/vc/vc.el: Document new remote-name argument of VC
repository-url command.
* lisp/vc/vc-git.el (vc-git-repository-url): Add and use new arg.
* lisp/vc/vc-hg.el (vc-hg-repository-url): Add and use new arg.
* lisp/vc/vc-bzr.el (vc-bzr-repository-url): Add new arg but ignore
it.
* lisp/vc/vc-svn.el (vc-svn-repository-url): Add new arg but ignore
it.
Diffstat (limited to 'lisp/vc/vc-svn.el')
-rw-r--r-- | lisp/vc/vc-svn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el index 6ab07c1476d..e108b3a340f 100644 --- a/lisp/vc/vc-svn.el +++ b/lisp/vc/vc-svn.el @@ -818,7 +818,7 @@ Set file properties accordingly. If FILENAME is non-nil, return its status." (setq loglines (buffer-substring-no-properties start (point-max))))) vc-svn-revisions))) -(defun vc-svn-repository-url (file-or-dir) +(defun vc-svn-repository-url (file-or-dir &optional _remote-name) (let ((default-directory (vc-svn-root file-or-dir))) (with-temp-buffer (vc-svn-command (current-buffer) 0 nil |