diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-02 09:42:36 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-02 13:14:51 +0200 |
commit | 82aac0a4b33eb54d510bcf19c162213682e1dea8 (patch) | |
tree | 1bd47128fc6d2b4ca441e4281edf4eb48e982eeb /lisp | |
parent | 2f0cd109fd98a8039fb52a7ad81a386efd6e208d (diff) |
use # for quoted functions
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-profile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index aa5ec2e..00ffedd 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -344,9 +344,9 @@ Returns a list of lists." (defun mastodon-profile--fields-insert (fields) "Format and insert field pairs (a.k.a profile metadata) in FIELDS." - (let* ((car-fields (mapcar 'car fields)) + (let* ((car-fields (mapcar #'car fields)) (left-width (cl-reduce - #'max (mapcar 'length car-fields)))) + #'max (mapcar #'length car-fields)))) (mapconcat (lambda (field) (mastodon-tl--render-text (concat |