Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
df2a9b12
Commit
df2a9b12
authored
Feb 08, 2006
by
Sam Steingold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(tramp-maybe-open-connection): Do not wait for output from a dead connection.
parent
201a821a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/ChangeLog
lisp/ChangeLog
+6
-1
lisp/net/tramp.el
lisp/net/tramp.el
+2
-1
No files found.
lisp/ChangeLog
View file @
df2a9b12
2006-02-08 Sam Steingold <sds@gnu.org>
* net/tramp.el (tramp-maybe-open-connection): Do not wait for
output from a dead connection.
2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
* dired.el (dired-mode-map): Add more bindings for tumme.
...
...
@@ -351,7 +356,7 @@
* international/latexenc.el: Add a suitable `coding:' tag.
(latexenc-find-file-coding-system): Undo last change.
2006-01-27 Arne J,
b
x(Brgensen <arne@arnested.dk>
2006-01-27 Arne J,
A
x(Brgensen <arne@arnested.dk>
* international/latexenc.el (latexenc-find-file-coding-system):
Make sure latexenc-main-file is a regular file and is readable.
...
...
lisp/net/tramp.el
View file @
df2a9b12
...
...
@@ -6482,7 +6482,8 @@ connection if a previous connection has died for some reason."
p
(
processp
p
)
(
memq
(
process-status
p
)
'
(
run
open
)))
(
tramp-send-command
multi-method
method
user
host
"echo are you awake"
nil
t
)
(
unless
(
tramp-wait-for-output
10
)
(
unless
(
and
(
memq
(
process-status
p
)
'
(
run
open
))
(
tramp-wait-for-output
10
))
(
delete-process
p
)
(
setq
p
nil
))
(
erase-buffer
)))
...
...
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