diff options
Diffstat (limited to 'lisp/net/socks.el')
-rw-r--r-- | lisp/net/socks.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/socks.el b/lisp/net/socks.el index 3c94e7d1b22..306376f8af2 100644 --- a/lisp/net/socks.el +++ b/lisp/net/socks.el @@ -343,7 +343,7 @@ If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"." ;; could get a wrapper hook, or defer to open-network-stream-function. (defvar socks-override-functions nil - "*Whether to overwrite the open-network-stream function with the SOCKSified + "Whether to overwrite the open-network-stream function with the SOCKSified version.") (require 'network-stream) @@ -480,7 +480,7 @@ version.") ;; Replacement functions for open-network-stream, etc. (defvar socks-noproxy nil - "*List of regexps matching hosts that we should not socksify connections to") + "List of regexps matching hosts that we should not socksify connections to") (defun socks-find-route (host service) (let ((route socks-server) @@ -626,7 +626,7 @@ version.") (defcustom socks-nslookup-program "nslookup" - "*If non-NIL then a string naming the nslookup program." + "If non-NIL then a string naming the nslookup program." :type '(choice (const :tag "None" :value nil) string) :group 'socks) |