Function: url-https-create-secure-wrapper

url-https-create-secure-wrapper is a macro defined in url-http.el.gz.

Signature

(url-https-create-secure-wrapper METHOD ARGS)

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-http.el.gz
(defmacro url-https-create-secure-wrapper (method args)
  `(defun ,(intern (format (if method "url-https-%s" "url-https") method)) ,args
    ,(format "HTTPS wrapper around `%s' call." (or method "url-http"))
    (,(intern (format (if method "url-http-%s" "url-http") method))
     ,@(remove '&rest (remove '&optional (append args (if method nil '(nil 'tls))))))))