diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc/vc-svn.el | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cac34a3d314..6d58882e9e7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-10-09 Glenn Morris <rgm@gnu.org> | 1 | 2013-10-09 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * vc/vc-svn.el (vc-svn-create-repo): | ||
| 4 | Expand paths in file://... url. (Bug#15446) | ||
| 5 | |||
| 3 | * emacs-lisp/authors.el (authors-aliases, authors-fixed-case): | 6 | * emacs-lisp/authors.el (authors-aliases, authors-fixed-case): |
| 4 | Add some entries. | 7 | Add some entries. |
| 5 | (authors): Remove unused local variables. | 8 | (authors): Remove unused local variables. |
diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el index 1fd51dd2148..d569349461f 100644 --- a/lisp/vc/vc-svn.el +++ b/lisp/vc/vc-svn.el | |||
| @@ -293,8 +293,10 @@ RESULT is a list of conses (FILE . STATE) for directory DIR." | |||
| 293 | (defun vc-svn-create-repo () | 293 | (defun vc-svn-create-repo () |
| 294 | "Create a new SVN repository." | 294 | "Create a new SVN repository." |
| 295 | (vc-do-command "*vc*" 0 "svnadmin" '("create" "SVN")) | 295 | (vc-do-command "*vc*" 0 "svnadmin" '("create" "SVN")) |
| 296 | ;; Expand default-directory because svn gets confused by eg | ||
| 297 | ;; file://~/path/to/file. (Bug#15446). | ||
| 296 | (vc-svn-command "*vc*" 0 "." "checkout" | 298 | (vc-svn-command "*vc*" 0 "." "checkout" |
| 297 | (concat "file://" default-directory "SVN"))) | 299 | (concat "file://" (expand-file-name default-directory) "SVN"))) |
| 298 | 300 | ||
| 299 | (autoload 'vc-switches "vc") | 301 | (autoload 'vc-switches "vc") |
| 300 | 302 | ||