Make async connect_network_socket failures use Qfailed
* src/process.c (connect_network_socket): Mark the process as Qfailed instead of using the error symbol (since this is what's defined for the status) (bug#53814).
This commit is contained in:
parent
dcb3b85ec7
commit
0d36eaa7c6
1 changed files with 1 additions and 1 deletions
|
|
@ -3599,7 +3599,7 @@ connect_network_socket (Lisp_Object proc, Lisp_Object addrinfos,
|
|||
{
|
||||
Lisp_Object data = get_file_errno_data (err, contact, xerrno);
|
||||
|
||||
pset_status (p, list2 (Fcar (data), Fcdr (data)));
|
||||
pset_status (p, list2 (Qfailed, data));
|
||||
unbind_to (count, Qnil);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue