]> git.eshelyaron.com Git - emacs.git/commitdiff
Slight gravatar.el code clean up
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 29 Jan 2021 04:52:51 +0000 (05:52 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 29 Jan 2021 04:52:51 +0000 (05:52 +0100)
* lisp/image/gravatar.el (gravatar--service-libravatar): Clean the
code up slightly.

lisp/image/gravatar.el

index b1e2a314ce8024a25d847ac3ea29a0f56a52e8a7..f6f056a2baf08c2380061f7ff4fa97df7ffd0320 100644 (file)
@@ -167,13 +167,12 @@ to track whether you're reading a specific mail."
                                         ;; ignore).
                                         (and (eq (dns-get 'type answers) 'SRV)
                                              answers)))
-                          (priorities (and (mapcar (lambda (r)
-                                                     (dns-get 'priority r))
-                                                   data)))
-                          (max-priority (if priorities
-                                            (apply #'max priorities)
-                                          0))
-                          (sum 0) top)
+                          (priorities (mapcar (lambda (r)
+                                                (dns-get 'priority r))
+                                              data))
+                          (max-priority (apply #'max 0 priorities))
+                          (sum 0)
+                          top)
                      ;; Attempt to find all records with the same maximal
                      ;; priority, and calculate the sum of their weights.
                      (dolist (ent data)