diff options
| author | Glenn Morris | 2013-09-11 23:55:15 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-09-11 23:55:15 -0700 |
| commit | aa30fa6f3a4273adcfa1cba183a74a5aeb47b463 (patch) | |
| tree | ad722e16d317b737410ced64f6b7bbec6af7ab72 | |
| parent | be94d7130041927a372f21bb2afeddafb4f92e5c (diff) | |
| download | emacs-aa30fa6f3a4273adcfa1cba183a74a5aeb47b463.tar.gz emacs-aa30fa6f3a4273adcfa1cba183a74a5aeb47b463.zip | |
* vc/vc-svn.el (vc-svn-retrieve-tag): Mark unused argument.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/vc/vc-svn.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8316c43bda0..e4bf56d24d7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | 2013-09-12 Glenn Morris <rgm@gnu.org> | 1 | 2013-09-12 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers) | 3 | * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers) |
| 4 | (vc-svn-ignore): Mark unused arguments. | 4 | (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments. |
| 5 | 5 | ||
| 6 | * subr.el (do-after-load-evaluation): Also give compiler warnings | 6 | * subr.el (do-after-load-evaluation): Also give compiler warnings |
| 7 | when obsolete files are used (except by obsolete files). | 7 | when obsolete files are used (except by obsolete files). |
diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el index d2c770de53b..36f27548123 100644 --- a/lisp/vc/vc-svn.el +++ b/lisp/vc/vc-svn.el | |||
| @@ -593,7 +593,7 @@ NAME is assumed to be a URL." | |||
| 593 | (vc-svn-command nil 0 dir "copy" name) | 593 | (vc-svn-command nil 0 dir "copy" name) |
| 594 | (when branchp (vc-svn-retrieve-tag dir name nil))) | 594 | (when branchp (vc-svn-retrieve-tag dir name nil))) |
| 595 | 595 | ||
| 596 | (defun vc-svn-retrieve-tag (dir name update) | 596 | (defun vc-svn-retrieve-tag (dir name _update) |
| 597 | "Retrieve a tag at and below DIR. | 597 | "Retrieve a tag at and below DIR. |
| 598 | NAME is the name of the tag; if it is empty, do a `svn update'. | 598 | NAME is the name of the tag; if it is empty, do a `svn update'. |
| 599 | If UPDATE is non-nil, then update (resynch) any affected buffers. | 599 | If UPDATE is non-nil, then update (resynch) any affected buffers. |