diff options
| author | Michael Albinus | 2012-04-02 10:50:26 +0200 |
|---|---|---|
| committer | Michael Albinus | 2012-04-02 10:50:26 +0200 |
| commit | 5ca64e000cf1835c2ecd0617fe86c01f1f77f36d (patch) | |
| tree | 41d6db727fd36004fde77b4bf6bf6b433d3d32aa /lisp/net | |
| parent | 319bc402c8e706e8763ff218bb2c527110f4267c (diff) | |
| download | emacs-5ca64e000cf1835c2ecd0617fe86c01f1f77f36d.tar.gz emacs-5ca64e000cf1835c2ecd0617fe86c01f1f77f36d.zip | |
* net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
`tramp-compat-call-process' instead of `tramp-local-call-process'.
Reported by Magnus Henoch <magnus.henoch@gmail.com>.
Diffstat (limited to 'lisp/net')
| -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 396443e60e6..6f3c5e04236 100644 --- a/lisp/net/tramp-gvfs.el +++ b/lisp/net/tramp-gvfs.el | |||
| @@ -1267,7 +1267,7 @@ COMMAND is usually a command from the gvfs-* utilities. | |||
| 1267 | (with-current-buffer (tramp-get-buffer vec) | 1267 | (with-current-buffer (tramp-get-buffer vec) |
| 1268 | (erase-buffer) | 1268 | (erase-buffer) |
| 1269 | (tramp-message vec 6 "%s %s" command (mapconcat 'identity args " ")) | 1269 | (tramp-message vec 6 "%s %s" command (mapconcat 'identity args " ")) |
| 1270 | (setq result (apply 'tramp-local-call-process command nil t nil args)) | 1270 | (setq result (apply 'tramp-compat-call-process command nil t nil args)) |
| 1271 | (tramp-message vec 6 "%s" (buffer-string)) | 1271 | (tramp-message vec 6 "%s" (buffer-string)) |
| 1272 | result))) | 1272 | result))) |
| 1273 | 1273 | ||