]> git.eshelyaron.com Git - emacs.git/commitdiff
soap-client.el: Revert dd0727e1ec1f, add compatibility comment
authorThomas Fitzsimmons <fitzsim@fitzsim.org>
Thu, 11 May 2023 10:01:32 +0000 (06:01 -0400)
committerThomas Fitzsimmons <fitzsim@fitzsim.org>
Thu, 11 May 2023 21:20:36 +0000 (17:20 -0400)
* lisp/net/soap-client.el (soap-decode-date-time): Call
encode-time using apply, for GNU ELPA backward compatibility.
Remove some tabs.
(soap-type-is-array?): Reword docstring to accommodate checkdoc.

lisp/net/soap-client.el

index e4b8bbd9cb5a9b27aae6ae3f6e3551e31716f571..90d9725f0a7878802b87a6ab75c5e19a78a10678 100644 (file)
@@ -717,9 +717,12 @@ representing leap seconds."
                 second)
               minute hour day month year second-fraction datatype time-zone)
       (let ((time
-            (encode-time (list
-                          (if new-decode-time new-decode-time-second second)
-                          minute hour day month year nil nil time-zone))))
+             ;; Continue calling encode-time the old way, for backward
+             ;; compatibility in GNU ELPA.
+             (apply
+              #'encode-time (list
+                             (if new-decode-time new-decode-time-second second)
+                             minute hour day month year nil nil time-zone))))
         (if new-decode-time
             (with-no-warnings (decode-time time nil t))
           (decode-time time))))))
@@ -946,7 +949,7 @@ This is a specialization of `soap-encode-attributes' for
    (t nil)))
 
 (defun soap-type-is-array? (type)
-  "Return t if TYPE defines an ARRAY."
+  "Return t if TYPE is an ARRAY."
   (and (soap-xs-complex-type-p type)
        (eq (soap-xs-complex-type-indicator type) 'array)))