]> code.delx.au - gnu-emacs-elpa/commitdiff
url-http-ntlm: Remove blank comment lines
authorThomas Fitzsimmons <fitzsim@fitzsim.org>
Mon, 26 Oct 2015 03:40:46 +0000 (23:40 -0400)
committerThomas Fitzsimmons <fitzsim@fitzsim.org>
Thu, 18 Feb 2016 03:19:52 +0000 (22:19 -0500)
* url-http-ntlm.el (url-ntlm-auth, url-ntlm-get-stage): Remove blank
comment lines.

packages/url-http-ntlm/url-http-ntlm.el

index 6981921017faa5e42b729973636d09a1be45564d..a98f462abfb4bfc038abc95a90a3a6f3d4f97ddc 100644 (file)
@@ -73,14 +73,12 @@ the server's last response.  These are used by
   (url-ntlm-ensure-keepalive)
   (let ((stage (url-ntlm-get-stage args)))
     (case stage
-      ;;
       ;; NTLM Type 1 message: the request
       (:request
        (destructuring-bind (&optional server user hash)
            (url-http-ntlm-authorisation url)
          (when server
            (url-http-ntlm-string (ntlm-build-auth-request user server)))))
-      ;;
       ;; NTLM Type 3 message: the response
       (:response
        (let ((challenge (url-http-ntlm-get-challenge)))
@@ -129,7 +127,6 @@ response's \"WWW-Authenticate\" header, munged by
     (if (eq args (car url-ntlm-last-args))
         ;; multiple calls, return the same argument we returned last time
         (cdr url-ntlm-last-args)
-        ;;
         (let ((stage
                (cond ((and auth-header (string-match response-rxp
                                                      (cdr auth-header)))
@@ -190,7 +187,6 @@ stored."
                             (url-http-ntlm-rmssoc server
                                                   url-http-ntlm-auth-storage))))
               entry)
-            ;;
             stored))))
 
 (defun url-http-ntlm-get-challenge ()