diff options
| author | Jürgen Hötzel | 2015-10-16 19:46:18 +0200 |
|---|---|---|
| committer | Michael Albinus | 2015-10-16 19:46:18 +0200 |
| commit | 1e1a326c0f609f403c625bd9082e1099a4d9a52a (patch) | |
| tree | 0ca4c04d3187c7c9f574e81df97b34a0e2f8210f | |
| parent | 995b69918bddb58536b5d09d2127179314e1fffb (diff) | |
| download | emacs-1e1a326c0f609f403c625bd9082e1099a4d9a52a.tar.gz emacs-1e1a326c0f609f403c625bd9082e1099a4d9a52a.zip | |
Handle symlink targets containing spaces in tramp-gvfs.el
* lisp/net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes):
Handle symlink targets containing spaces.
| -rw-r--r-- | lisp/net/tramp-gvfs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el index 463b99785f7..b9d2fa2739e 100644 --- a/lisp/net/tramp-gvfs.el +++ b/lisp/net/tramp-gvfs.el | |||
| @@ -813,7 +813,7 @@ file names." | |||
| 813 | (goto-char (point-min)) | 813 | (goto-char (point-min)) |
| 814 | (setq res-symlink-target | 814 | (setq res-symlink-target |
| 815 | (if (re-search-forward | 815 | (if (re-search-forward |
| 816 | "standard::symlink-target:\\s-+\\(\\S-+\\)" nil t) | 816 | "standard::symlink-target:\\s-+\\(.*\\)$" nil t) |
| 817 | (match-string 1))) | 817 | (match-string 1))) |
| 818 | ;; ... number links | 818 | ;; ... number links |
| 819 | (goto-char (point-min)) | 819 | (goto-char (point-min)) |