diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-21 19:59:50 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-22 10:46:42 -0200 |
commit | 316829ed9414e96684ba2dd82100426d28d7215f (patch) | |
tree | 700c6c981d39b7c12805927e21f1c3ac813a13a9 /sx-inbox.el | |
parent | b854489549490a53713f0777ac4c22096920e19f (diff) |
Move unread lists to sx-inbox
Diffstat (limited to 'sx-inbox.el')
-rw-r--r-- | sx-inbox.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sx-inbox.el b/sx-inbox.el index 3bc95c8..9cdb959 100644 --- a/sx-inbox.el +++ b/sx-inbox.el @@ -63,6 +63,21 @@ KEYWORDS are added to the method call along with PAGE. :keywords keywords :filter sx-inbox-filter)) + +;;; Major-mode +(defvar sx-inbox--unread-inbox nil + "List of inbox items still unread.") + +(defvar sx-inbox--unread-notifications nil + "List of notifications items still unread.") + +(defvar sx-inbox--read-inbox nil + "List of inbox items which are read. +These are identified by their links.") + +(defvar sx-inbox--read-notifications nil + "List of notification items which are read. +These are identified by their links.") (provide 'sx-inbox) ;;; sx-inbox.el ends here |