diff options
Diffstat (limited to 'lisp/net/net-utils.el')
-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 8c7d33a67d4..8777fe4bf46 100644 --- a/lisp/net/net-utils.el +++ b/lisp/net/net-utils.el @@ -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 |