aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMichael Albinus2008-06-15 13:40:27 +0000
committerMichael Albinus2008-06-15 13:40:27 +0000
commit6f77e7d72ed91a459b6ca47ff67d01a0b3ee3b51 (patch)
treebff408afb0f6ace4e10842112de63f8993d2f83d /lisp
parent11c712173eb2b012b45bde54a2815810c953edb5 (diff)
downloademacs-6f77e7d72ed91a459b6ca47ff67d01a0b3ee3b51.tar.gz
emacs-6f77e7d72ed91a459b6ca47ff67d01a0b3ee3b51.zip
* net/tramp-cmds.el (tramp-cleanup-all-connections): Reset
`tramp-locked'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/net/tramp-cmds.el3
2 files changed, 13 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 809ace2bfb9..6d8266efdca 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12008-06-15 Michael Albinus <michael.albinus@gmx.de>
2
3 * net/tramp.el (tramp-handle-start-file-process): Clear
4 modification time of the connection buffer.
5 (tramp-sh-file-name-handler): Reset `tramp-locked' in case of
6 error.
7
8 * net/tramp-cmds.el (tramp-cleanup-all-connections): Reset
9 `tramp-locked'.
10
12008-06-15 Ulf Jasper <ulf@web.de> 112008-06-15 Ulf Jasper <ulf@web.de>
2 12
3 * net/newst-treeview.el (newsticker--treeview-list-update) 13 * net/newst-treeview.el (newsticker--treeview-list-update)
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el
index fae9e699c05..6acce78c02c 100644
--- a/lisp/net/tramp-cmds.el
+++ b/lisp/net/tramp-cmds.el
@@ -102,6 +102,9 @@ When called interactively, a Tramp connection has to be selected."
102This includes password cache, file cache, connection cache, buffers." 102This includes password cache, file cache, connection cache, buffers."
103 (interactive) 103 (interactive)
104 104
105 ;; Unlock Tramp.
106 (setq tramp-locked nil)
107
105 ;; Flush password cache. 108 ;; Flush password cache.
106 (when (functionp 'password-reset) 109 (when (functionp 'password-reset)
107 (funcall (symbol-function 'password-reset))) 110 (funcall (symbol-function 'password-reset)))