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
674a9263
Commit
674a9263
authored
Oct 11, 2009
by
Michael Albinus
Browse files
* net/tramp-cache.el (tramp-flush-connection-property): The hash
can be empty.
parent
46bcd78c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/net/tramp-cache.el
lisp/net/tramp-cache.el
+6
-4
No files found.
lisp/net/tramp-cache.el
View file @
674a9263
...
...
@@ -240,10 +240,12 @@ KEY identifies the connection, it is either a process or a vector."
(
aset
key
3
nil
))
(
tramp-message
key
7
"%s %s"
key
(
let
(
properties
)
(
maphash
(
lambda
(
x
y
)
(
add-to-list
'properties
x
'append
))
(
gethash
key
tramp-cache-data
))
(
let
((
hash
(
gethash
key
tramp-cache-data
))
properties
)
(
if
(
hash-table-p
hash
)
(
maphash
(
lambda
(
x
y
)
(
add-to-list
'properties
x
'append
))
(
gethash
key
tramp-cache-data
)))
properties
))
(
setq
tramp-cache-data-changed
t
)
(
remhash
key
tramp-cache-data
))
...
...
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