Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
93776a8c
Commit
93776a8c
authored
Oct 01, 2009
by
Michael Albinus
Browse files
* net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Handle
optional parameter RECURSIVE.
parent
ecacb4d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/net/tramp-gvfs.el
lisp/net/tramp-gvfs.el
+2
-2
No files found.
lisp/net/tramp-gvfs.el
View file @
93776a8c
...
...
@@ -520,9 +520,9 @@ is no information where to trace the message.")
newname
)
ok-if-already-exists
keep-date
preserve-uid-gid
))
(
defun
tramp-gvfs-handle-delete-directory
(
directory
)
(
defun
tramp-gvfs-handle-delete-directory
(
directory
&optional
recursive
)
"Like `delete-directory' for Tramp files."
(
delete-directory
(
tramp-gvfs-fuse-file-name
directory
)))
(
delete-directory
(
tramp-gvfs-fuse-file-name
directory
)
recursive
))
(
defun
tramp-gvfs-handle-delete-file
(
filename
)
"Like `delete-file' for Tramp files."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment