diff options
| author | Eli Zaretskii | 2024-12-21 07:56:08 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2024-12-21 07:56:08 -0500 |
| commit | 3617940f322c381dee8b3c1f970b8eeda13d1c11 (patch) | |
| tree | 523e7e4302fb8b1c29fbba583e01162940451745 /src/process.c | |
| parent | fd529bbd076d14087d70c50d94bc9ef231cf1997 (diff) | |
| parent | 8f8da2d78545ea74853fd9b8d2156f4f93a2324a (diff) | |
| download | emacs-3617940f322c381dee8b3c1f970b8eeda13d1c11.tar.gz emacs-3617940f322c381dee8b3c1f970b8eeda13d1c11.zip | |
Merge from origin/emacs-30
8f8da2d7854 ; * ChangeLog.4: Update.
49adcf30b01 ; * etc/AUTHORS: Update.
1381c6f9591 * Update authors.el
5c0f3f5826e ; * etc/NEWS: Mark unmarked entries.
8a0c9c234f1 Document 'trusted-content
c6ce11b2a48 Mention network-interface-list in network-interface-info ...
a7905145f70 ; * lisp/emacs-lisp/re-builder.el (reb-change-syntax): Fi...
cde22c02011 Move NEWS items from unreleased 28.3 to released 29.1
5686bb5b428 Improve browse-url-android-share docstring
92041e15f4a Minor doc fix for url-handler-regexp
9fd96e2ab95 Improve reb-change-syntax docstring
b9dc337ea74 * lisp/files.el (trusted-content-p): Make `:all` work in ...
4b685bc4fcd ; * src/process.c (Fnetwork_interface_list): Fix typo.
c14c4895719 ; * lisp/net/nsm.el (nsm-trust-local-network): Fix typo.
10f976300d0 ; Add some tree-sitter thing content to the manual
55303a6bc0a * lisp/org/ox-texinfo.el (org-texinfo-template): Fix Info...
8b6c6cffd1f trusted-content: Adjust the last patch based on prelimina...
69b16e5c638 ; * etc/NEWS: Fix typos.
5c6dbc65f36 ; * doc/lispref/frames.texi (Multiple Terminals): Add ind...
856a58e2827 Update documentation of 'etags' regexps some more
4c68846223b Update documentation of 'etags' regexps
b5158bd1914 elisp-mode.el: Disable Flymake byte-compile backend in un...
# Conflicts:
# doc/man/etags.1
# etc/NEWS
# lisp/org/ox-texinfo.el
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 4b3178005c8..928fae09ef6 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4613,7 +4613,7 @@ network_interface_info (Lisp_Object ifname) | |||
| 4613 | DEFUN ("network-interface-list", Fnetwork_interface_list, | 4613 | DEFUN ("network-interface-list", Fnetwork_interface_list, |
| 4614 | Snetwork_interface_list, 0, 2, 0, | 4614 | Snetwork_interface_list, 0, 2, 0, |
| 4615 | doc: /* Return an alist of all network interfaces and their network address. | 4615 | doc: /* Return an alist of all network interfaces and their network address. |
| 4616 | Each element is cons of the form (IFNAME . IP) where IFNAME is a | 4616 | Each element is a cons of the form (IFNAME . IP) where IFNAME is a |
| 4617 | string containing the interface name, and IP is the network address in | 4617 | string containing the interface name, and IP is the network address in |
| 4618 | internal format; see the description of ADDRESS in | 4618 | internal format; see the description of ADDRESS in |
| 4619 | `make-network-process'. The interface name is not guaranteed to be | 4619 | `make-network-process'. The interface name is not guaranteed to be |
| @@ -4664,7 +4664,8 @@ where ADDR is the layer 3 address, BCAST is the layer 3 broadcast address, | |||
| 4664 | NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and | 4664 | NETMASK is the layer 3 network mask, HWADDR is the layer 2 address, and |
| 4665 | FLAGS is the current flags of the interface. | 4665 | FLAGS is the current flags of the interface. |
| 4666 | 4666 | ||
| 4667 | Data that is unavailable is returned as nil. */) | 4667 | Data that is unavailable is returned as nil. Only returns IPv4 layer 3 |
| 4668 | addresses, for IPv6 use `network-interface-list'. */) | ||
| 4668 | (Lisp_Object ifname) | 4669 | (Lisp_Object ifname) |
| 4669 | { | 4670 | { |
| 4670 | #if ((defined HAVE_NET_IF_H \ | 4671 | #if ((defined HAVE_NET_IF_H \ |