diff options
| author | Stefan Kangas | 2022-07-08 06:31:54 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-07-08 06:31:54 +0200 |
| commit | 7397d0fd1910aee37c287bb02c5bb2b7811be860 (patch) | |
| tree | 8d4cb06f34d1978dfa351960a6ba31586e6378d2 | |
| parent | b6a90b71a2e421d3eef52d4d9e9a82592b7ad277 (diff) | |
| parent | 2ac0ddc4ac406b04b258f535aaa09a0e3859953b (diff) | |
| download | emacs-7397d0fd1910aee37c287bb02c5bb2b7811be860.tar.gz emacs-7397d0fd1910aee37c287bb02c5bb2b7811be860.zip | |
Merge from origin/emacs-28
2ac0ddc4ac ; * lisp/net/net-utils.el: Minor doc fixes.
| -rw-r--r-- | lisp/net/net-utils.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el index ab7770e04a7..b74400cd96c 100644 --- a/lisp/net/net-utils.el +++ b/lisp/net/net-utils.el | |||
| @@ -23,11 +23,10 @@ | |||
| 23 | 23 | ||
| 24 | ;;; Commentary: | 24 | ;;; Commentary: |
| 25 | 25 | ||
| 26 | ;; | ||
| 27 | ;; There are three main areas of functionality: | 26 | ;; There are three main areas of functionality: |
| 28 | ;; | 27 | ;; |
| 29 | ;; * Wrap common network utility programs (ping, traceroute, netstat, | 28 | ;; * Wrap common network utility programs (ping, traceroute, netstat, |
| 30 | ;; nslookup, arp, route). Note that these wrappers are of the diagnostic | 29 | ;; nslookup, arp, route). Note that these wrappers are of the diagnostic |
| 31 | ;; functions of these programs only. | 30 | ;; functions of these programs only. |
| 32 | ;; | 31 | ;; |
| 33 | ;; * Implement some very basic protocols in Emacs Lisp (finger and whois) | 32 | ;; * Implement some very basic protocols in Emacs Lisp (finger and whois) |
| @@ -39,7 +38,7 @@ | |||
| 39 | ;;; Code: | 38 | ;;; Code: |
| 40 | 39 | ||
| 41 | ;; On some systems, programs like ifconfig are not in normal user | 40 | ;; On some systems, programs like ifconfig are not in normal user |
| 42 | ;; path, but rather in /sbin, /usr/sbin, etc (but non-root users can | 41 | ;; path, but rather in /sbin, /usr/sbin, etc. (but non-root users can |
| 43 | ;; still use them for queries). Actually the trend these | 42 | ;; still use them for queries). Actually the trend these |
| 44 | ;; days is for /sbin to be a symlink to /usr/sbin, but we still need to | 43 | ;; days is for /sbin to be a symlink to /usr/sbin, but we still need to |
| 45 | ;; search both for older systems. | 44 | ;; search both for older systems. |