diff options
| author | Paul Eggert | 2021-01-01 01:14:58 -0800 |
|---|---|---|
| committer | Paul Eggert | 2021-01-01 01:14:58 -0800 |
| commit | 8bc552ffa53936f9fa1517c30d5057be80d09ca4 (patch) | |
| tree | 29097047634cc76f1b3aea76a15334d8bf156f5d /src/process.c | |
| parent | ba05d005e5a81bc123ad8da928b1bccb6b160e7a (diff) | |
| parent | 74a77ef299f3703b8b9eac7579af6b924de1c3e8 (diff) | |
| download | emacs-8bc552ffa53936f9fa1517c30d5057be80d09ca4.tar.gz emacs-8bc552ffa53936f9fa1517c30d5057be80d09ca4.zip | |
Merge from origin/emacs-27
74a77ef299 Improve documentation of 'network-lookup-address-info'
c6d5555646 Display messages sent using ERC's /say
c156723769 Fix Rmail summary display when From: header is malformed
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 31591416898..eaa7fa14651 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4587,12 +4587,13 @@ network_lookup_address_info_1 (Lisp_Object host, const char *service, | |||
| 4587 | 4587 | ||
| 4588 | DEFUN ("network-lookup-address-info", Fnetwork_lookup_address_info, | 4588 | DEFUN ("network-lookup-address-info", Fnetwork_lookup_address_info, |
| 4589 | Snetwork_lookup_address_info, 1, 2, 0, | 4589 | Snetwork_lookup_address_info, 1, 2, 0, |
| 4590 | doc: /* Look up ip address info of NAME. | 4590 | doc: /* Look up Internet Protocol (IP) address info of NAME. |
| 4591 | Optional parameter FAMILY controls whether to look up IPv4 or IPv6 | 4591 | Optional parameter FAMILY controls whether to look up IPv4 or IPv6 |
| 4592 | addresses. The default of nil means both, symbol `ipv4' means IPv4 | 4592 | addresses. The default of nil means both, symbol `ipv4' means IPv4 |
| 4593 | only, symbol `ipv6' means IPv6 only. Returns a list of addresses, or | 4593 | only, symbol `ipv6' means IPv6 only. Returns a list of addresses, or |
| 4594 | nil if none were found. Each address is a vector of integers, as per | 4594 | nil if none were found. Each address is a vector of integers, as per |
| 4595 | the description of ADDRESS in `make-network-process'. */) | 4595 | the description of ADDRESS in `make-network-process'. In case of |
| 4596 | error displays the error message. */) | ||
| 4596 | (Lisp_Object name, Lisp_Object family) | 4597 | (Lisp_Object name, Lisp_Object family) |
| 4597 | { | 4598 | { |
| 4598 | Lisp_Object addresses = Qnil; | 4599 | Lisp_Object addresses = Qnil; |