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
86c40970
Commit
86c40970
authored
Jul 24, 2013
by
Glenn Morris
Browse files
* lisp/ffap.el (ffap-machine-p): Handle "not known" response.
Fixes: debbugs:14929
parent
198fa217
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/ffap.el
lisp/ffap.el
+2
-1
No files found.
lisp/ChangeLog
View file @
86c40970
2013-07-24 Glenn Morris <rgm@gnu.org>
* ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
2013-07-24 Michael Albinus <michael.albinus@gmx.de>
* filenotify.el (file-notify-supported-p):
...
...
lisp/ffap.el
View file @
86c40970
...
...
@@ -459,7 +459,8 @@ Returned values:
(
let
((
mesg
(
car
(
cdr
error
))))
(
cond
;; v18:
((
string-match
"^Unknown host"
mesg
)
nil
)
((
string-match
"\\(^Unknown host\\|Name or service not known$\\)"
mesg
)
nil
)
((
string-match
"not responding$"
mesg
)
mesg
)
;; v19:
;; (file-error "connection failed" "permission denied"
...
...
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