diff options
Diffstat (limited to 'lisp/net/net-utils.el')
-rw-r--r-- | lisp/net/net-utils.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el index ef3651b0335..8777fe4bf46 100644 --- a/lisp/net/net-utils.el +++ b/lisp/net/net-utils.el @@ -771,7 +771,7 @@ This command uses `smbclient-program' to connect to HOST." ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Full list is available at: -;; http://www.iana.org/assignments/port-numbers +;; https://www.iana.org/assignments/port-numbers (defvar network-connection-service-alist (list (cons 'echo 7) @@ -985,9 +985,8 @@ This command uses `network-connection-service-alist', which see." (read-from-minibuffer "Host: " (net-utils-machine-at-point)) (completing-read "Service: " (mapcar - (function - (lambda (elt) - (list (symbol-name (car elt))))) + (lambda (elt) + (list (symbol-name (car elt)))) network-connection-service-alist)))) (network-connection host |