Function: socks-unregister-authentication-method
socks-unregister-authentication-method is a byte-compiled function
defined in socks.el.gz.
Signature
(socks-unregister-authentication-method ID)
Source Code
;; Defined in /usr/src/emacs/lisp/net/socks.el.gz
(defun socks-unregister-authentication-method (id)
(let ((old (assq id socks-authentication-methods)))
(if old
(setq socks-authentication-methods
(delq old socks-authentication-methods)))))