[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/mastodon 58a5e2deef 05/11: * lisp/mastodon-notifications.e
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/mastodon 58a5e2deef 05/11: * lisp/mastodon-notifications.el: Fix dependency |
Date: |
Wed, 30 Aug 2023 09:59:52 -0400 (EDT) |
branch: elpa/mastodon
commit 58a5e2deef6dff294607cf8d01b27d0ef8a65e4e
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
* lisp/mastodon-notifications.el: Fix dependency
The file can't be loaded before `mastodon` because it requires
`mastodon-mode-map`, so just require it. Also make the keymap
definition more standard.
* lisp/mastodon-notifications.el: Require `mastodon`.
(mastodon-mode-map): Remove redundant declaration.
(mastodon-notifications--map): Avoid `copy-keymap` and
`keymap-canonicalize`.
---
lisp/mastodon-notifications.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el
index df9612232b..5f6d1badfe 100644
--- a/lisp/mastodon-notifications.el
+++ b/lisp/mastodon-notifications.el
@@ -31,12 +31,13 @@
;;; Code:
+(require 'mastodon)
+
(autoload 'mastodon-http--api "mastodon-http")
(autoload 'mastodon-http--get-params-async-json "mastodon-http")
(autoload 'mastodon-http--post "mastodon-http")
(autoload 'mastodon-http--triage "mastodon-http")
(autoload 'mastodon-media--inline-images "mastodon-media")
-(autoload 'mastodon-notifications-get "mastodon")
(autoload 'mastodon-tl--byline "mastodon-tl")
(autoload 'mastodon-tl--byline-author "mastodon-tl")
(autoload 'mastodon-tl--clean-tabs-and-nl "mastodon-tl")
@@ -55,7 +56,6 @@
(defvar mastodon-tl--buffer-spec)
(defvar mastodon-tl--display-media-p)
-(defvar mastodon-mode-map)
(defvar mastodon-notifications--types-alist
'(("follow" . mastodon-notifications--follow)
@@ -80,11 +80,12 @@
"Alist of subjects for notification types.")
(defvar mastodon-notifications--map
- (let ((map (copy-keymap mastodon-mode-map)))
+ (let ((map (make-sparse-keymap)))
+ (set-keymap-parent map mastodon-mode-map)
(define-key map (kbd "a") #'mastodon-notifications--follow-request-accept)
(define-key map (kbd "j") #'mastodon-notifications--follow-request-reject)
(define-key map (kbd "C-k") #'mastodon-notifications--clear-current)
- (keymap-canonicalize map))
+ map)
"Keymap for viewing notifications.")
(defun mastodon-notifications--byline-concat (message)
- [nongnu] branch elpa/mastodon created (now 8f4b5f5ad8), ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon fcebc0d1b3 01/11: fix quotation marks in 2 docstrings, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon 123c7cf0a5 04/11: Simplify calls to `alist-get`, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon 8f4b5f5ad8 11/11: refactor mastodon-return-credential-account, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon 58a5e2deef 05/11: * lisp/mastodon-notifications.el: Fix dependency,
ELPA Syncer <=
- [nongnu] elpa/mastodon 756096757d 08/11: Merge branch 'scratch/mastodon' of git://git.sv.gnu.org/emacs/nongnu into scratch/mastodon, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon f646c2d512 06/11: Don't refer to obsolete font-lock face variables, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon 5640de5f2e 07/11: Misc minor cosmetic changes, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon 1b9686bb2b 10/11: readme re ts dep gone, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon afb3ac38e0 02/11: force arg for mastodon-return-credential-account., ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon 6360c8b9d0 03/11: * lisp/mastodon.el: Remove `ts` from `Package-Requires:`, ELPA Syncer, 2023/08/30
- [nongnu] elpa/mastodon 28b12f4eb8 09/11: Merge branch 'scratch/mastodon' into develop, ELPA Syncer, 2023/08/30