aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2022-02-16 10:37:23 +0100
committermousebot <mousebot@riseup.net>2022-02-17 09:50:37 +0100
commit7d12bfac3c9adfae63529cc2a9d10ab006fc7b5f (patch)
tree4a223bda99998d02f73ec23260cb207ef0132935 /lisp
parent241aa9b35101e6e8814e4aab64597caf6a285f75 (diff)
cleanup indentation in tl.el
cleanup indents
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-profile.el4
-rw-r--r--lisp/mastodon-search.el46
-rw-r--r--lisp/mastodon-tl.el102
3 files changed, 76 insertions, 76 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index b5e1489..0119a36 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -475,8 +475,8 @@ If the handle does not match a search return then retun NIL."
These include the author, author of reblogged entries and any user mentioned."
(when status
(let ((this-account (alist-get 'account status))
- (mentions (alist-get 'mentions status))
- (reblog (alist-get 'reblog status)))
+ (mentions (alist-get 'mentions status))
+ (reblog (alist-get 'reblog status)))
(seq-filter
'stringp
(seq-uniq
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el
index 1c7f00e..e1ca81a 100644
--- a/lisp/mastodon-search.el
+++ b/lisp/mastodon-search.el
@@ -130,29 +130,29 @@ Returns a nested list containing user handle, display name, and URL."
JSON is the data from the server..
If NOTE is non-nil, include user's profile note.
This is also called by `mastodon-tl--get-follow-suggestions'."
- (mapc (lambda (acct)
- (let ((user (mastodon-search--get-user-info acct)))
- (insert
- (propertize
- (concat (propertize (car user)
- 'face 'mastodon-display-name-face
- 'byline t
- 'toot-id "0")
- " : \n : "
- (propertize (concat "@" (cadr user))
- 'face 'mastodon-handle-face
- 'mouse-face 'highlight
- 'mastodon-tab-stop 'user-handle
- 'keymap mastodon-tl--link-keymap
- 'mastodon-handle (concat "@" (cadr user))
- 'help-echo (concat "Browse user profile of @" (cadr user)))
- " : \n"
- (if note
- (mastodon-tl--render-text (cadddr user) nil)
- "")
- "\n")
- 'user-json acct))))
- json))
+ (mapc (lambda (acct)
+ (let ((user (mastodon-search--get-user-info acct)))
+ (insert
+ (propertize
+ (concat (propertize (car user)
+ 'face 'mastodon-display-name-face
+ 'byline t
+ 'toot-id "0")
+ " : \n : "
+ (propertize (concat "@" (cadr user))
+ 'face 'mastodon-handle-face
+ 'mouse-face 'highlight
+ 'mastodon-tab-stop 'user-handle
+ 'keymap mastodon-tl--link-keymap
+ 'mastodon-handle (concat "@" (cadr user))
+ 'help-echo (concat "Browse user profile of @" (cadr user)))
+ " : \n"
+ (if note
+ (mastodon-tl--render-text (cadddr user) nil)
+ "")
+ "\n")
+ 'user-json acct))))
+ json))
(defun mastodon-search--get-user-info (account)
"Get user handle, display name, account URL and profile note from ACCOUNT."
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index eaafd74..2c2c6ec 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -362,12 +362,12 @@ Used on initializing a timeline or thread."
(propertize (concat "@" handle)
'face 'mastodon-handle-face
'mouse-face 'highlight
- 'mastodon-tab-stop 'user-handle
+ 'mastodon-tab-stop 'user-handle
'account account
- 'shr-url profile-url
- 'keymap mastodon-tl--link-keymap
+ 'shr-url profile-url
+ 'keymap mastodon-tl--link-keymap
'mastodon-handle (concat "@" handle)
- 'help-echo (concat "Browse user profile of @" handle))
+ 'help-echo (concat "Browse user profile of @" handle))
")")))
(defun mastodon-tl--format-faves-count (toot)
@@ -520,34 +520,34 @@ By default it is `mastodon-tl--byline-boosted'"
;; this makes the behaviour of these markers consistent whether they are
;; displayed for an already boosted/favourited toot or as the result of
;; the toot having just been favourited/boosted.
- (concat (when boosted
- (mastodon-tl--format-faved-or-boosted-byline "B"))
- (when faved
- (mastodon-tl--format-faved-or-boosted-byline "F")))
- (propertize
- (concat
- ;; we propertize help-echo format faves for author name
- ;; in `mastodon-tl--byline-author'
- (funcall author-byline toot)
- (cond ((equal visibility "direct")
- (if (fontp (char-displayable-p #10r128274))
- " ✉"
- " [direct]"))
- ((equal visibility "private")
- (if (fontp (char-displayable-p #10r9993))
- " 🔒"
- " [followers]")))
- (funcall action-byline toot)
- " "
- ;; TODO: Once we have a view for toot (responses etc.) make
- ;; this a tab stop and attach an action.
- (propertize
- (format-time-string mastodon-toot-timestamp-format parsed-time)
- 'timestamp parsed-time
- 'display (if mastodon-tl--enable-relative-timestamps
- (mastodon-tl--relative-time-description parsed-time)
- parsed-time))
- (propertize "\n ------------\n" 'face 'default))
+ (concat (when boosted
+ (mastodon-tl--format-faved-or-boosted-byline "B"))
+ (when faved
+ (mastodon-tl--format-faved-or-boosted-byline "F")))
+ (propertize
+ (concat
+ ;; we propertize help-echo format faves for author name
+ ;; in `mastodon-tl--byline-author'
+ (funcall author-byline toot)
+ (cond ((equal visibility "direct")
+ (if (fontp (char-displayable-p #10r128274))
+ " ✉"
+ " [direct]"))
+ ((equal visibility "private")
+ (if (fontp (char-displayable-p #10r9993))
+ " 🔒"
+ " [followers]")))
+ (funcall action-byline toot)
+ " "
+ ;; TODO: Once we have a view for toot (responses etc.) make
+ ;; this a tab stop and attach an action.
+ (propertize
+ (format-time-string mastodon-toot-timestamp-format parsed-time)
+ 'timestamp parsed-time
+ 'display (if mastodon-tl--enable-relative-timestamps
+ (mastodon-tl--relative-time-description parsed-time)
+ parsed-time))
+ (propertize "\n ------------\n" 'face 'default))
'favourited-p faved
'boosted-p boosted
'byline t))))
@@ -947,11 +947,11 @@ a notification."
(let ((attachments (mastodon-tl--property 'attachments))
vids)
(mapc (lambda (x)
- (let ((att-type (plist-get x :type)))
- (when (or (string= "video" att-type)
- (string= "gifv" att-type))
- (push x vids))))
- attachments)
+ (let ((att-type (plist-get x :type)))
+ (when (or (string= "video" att-type)
+ (string= "gifv" att-type))
+ (push x vids))))
+ attachments)
(car vids)))
(defun mastodon-tl--mpv-play-video-from-byline ()
@@ -975,7 +975,7 @@ in which case play first video or gif from current toot."
(type (or ;; in byline:
type
;; point in toot:
- (mastodon-tl--property 'mastodon-media-type))))
+ (mastodon-tl--property 'mastodon-media-type))))
(if url
(if (or (equal type "gifv")
(equal type "video"))
@@ -1211,24 +1211,24 @@ JSON is what is returned by by the server."
(propertize filter-string
'toot-id id ;for goto-next-filter compat
'phrase phrase
- ;'help-echo "n/p to go to next/prev filter, c to create new filter, d to delete filter at point."
- ;'keymap mastodon-tl--view-filters-keymap
+ ;;'help-echo "n/p to go to next/prev filter, c to create new filter, d to delete filter at point."
+ ;;'keymap mastodon-tl--view-filters-keymap
'byline t)))) ;for goto-next-filter compat
(defun mastodon-tl--delete-filter ()
"Delete filter at point."
(interactive)
- (let* ((filter-id (get-text-property (point) 'toot-id))
- (phrase (get-text-property (point) 'phrase))
- (url (mastodon-http--api
- (format "filters/%s" filter-id))))
- (if (equal nil filter-id)
- (error "No filter at point?")
- (when (y-or-n-p (format "Delete this filter? ")))
- (let ((response (mastodon-http--delete url)))
- (mastodon-http--triage response (lambda ()
- (mastodon-tl--view-filters)
- (message "Filter for \"%s\" deleted!" phrase)))))))
+ (let* ((filter-id (get-text-property (point) 'toot-id))
+ (phrase (get-text-property (point) 'phrase))
+ (url (mastodon-http--api
+ (format "filters/%s" filter-id))))
+ (if (equal nil filter-id)
+ (error "No filter at point?")
+ (when (y-or-n-p (format "Delete this filter? ")))
+ (let ((response (mastodon-http--delete url)))
+ (mastodon-http--triage response (lambda ()
+ (mastodon-tl--view-filters)
+ (message "Filter for \"%s\" deleted!" phrase)))))))
(defun mastodon-tl--get-follow-suggestions ()
"Display a buffer of suggested accounts to follow."