diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-11 09:20:56 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-11 09:20:56 +0200 |
commit | 7edfe0c4828145c75e5cb2e260c60463f8b24a4d (patch) | |
tree | 2116db65567bac7abc6410851740567f08b0db0a /lisp/mastodon-notifications.el | |
parent | fbcec02f9072bd61908deef311b322f6b0719410 (diff) |
remove notifs type funs
Diffstat (limited to 'lisp/mastodon-notifications.el')
-rw-r--r-- | lisp/mastodon-notifications.el | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 0e27ca0..6e21744 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -162,40 +162,6 @@ Can be called in notifications view or in follow-requests view." (interactive) (mastodon-notifications--follow-request-process :reject)) -(defun mastodon-notifications--mention (group json) - "Format for a `mention' NOTE." - (mastodon-notifications--format-note group json 'mention)) - -(defun mastodon-notifications--follow (group json) - "Format for a `follow' NOTE." - (mastodon-notifications--format-note group json 'follow)) - -(defun mastodon-notifications--follow-request (group json) - "Format for a `follow-request' NOTE." - (mastodon-notifications--format-note group json 'follow-request)) - -(defun mastodon-notifications--favourite (group json) - "Format for a `favourite' NOTE." - (mastodon-notifications--format-note group json 'favourite)) - -(defun mastodon-notifications--reblog (group json) - "Format for a `boost' NOTE." - (mastodon-notifications--format-note group json 'reblog)) - -(defun mastodon-notifications--status (group json) - "Format for a `status' NOTE. -Status notifications are given when -`mastodon-tl--enable-notify-user-posts' has been set." - (mastodon-notifications--format-note group json 'status)) - -(defun mastodon-notifications--poll (group json) - "Format for a `poll' NOTE." - (mastodon-notifications--format-note group json 'poll)) - -(defun mastodon-notifications--edit (group json) - "Format for an `edit' NOTE." - (mastodon-notifications--format-note group json 'edit)) - (defun mastodon-notifications--comment-note-text (str) "Add comment face to all text in STR with `shr-text' face only." (with-temp-buffer |