emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master afaf862: [gnorb] Fix to previous commit, bump to 1.6.3


From: Eric Abrahamsen
Subject: [elpa] master afaf862: [gnorb] Fix to previous commit, bump to 1.6.3
Date: Fri, 20 Sep 2019 20:40:36 -0400 (EDT)

branch: master
commit afaf862f4b997069c5f124463c18a2c322468fa8
Author: Eric Abrahamsen <address@hidden>
Commit: Eric Abrahamsen <address@hidden>

    [gnorb] Fix to previous commit, bump to 1.6.3
    
    * packages/gnorb/gnorb-gnus.el (gnorb-gnus-insert-format-letter-maybe,
      gnorb-gnus-insert-format-tags): Registry is an object, not a hash
      table.
    * packages/gnorb/gnorb.el: Bump to 1.6.3.
---
 packages/gnorb/gnorb-gnus.el | 4 ++--
 packages/gnorb/gnorb.el      | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/gnorb/gnorb-gnus.el b/packages/gnorb/gnorb-gnus.el
index 15c83b5..6dbda6e 100644
--- a/packages/gnorb/gnorb-gnus.el
+++ b/packages/gnorb/gnorb-gnus.el
@@ -986,7 +986,7 @@ option `gnorb-gnus-hint-relevant-article' is non-nil."
 (add-hook 'gnus-select-article-hook 'gnorb-gnus-hint-relevant-message)
 
 (defun gnorb-gnus-insert-format-letter-maybe (header)
-  (if (hash-table-p gnus-registry-db)
+  (if (object-p gnus-registry-db)
       (if (not (or (gnus-ephemeral-group-p gnus-newsgroup-name)
                   (gnus-virtual-group-p gnus-newsgroup-name)))
          (let* ((id (mail-header-message-id header))
@@ -1010,7 +1010,7 @@ option `gnorb-gnus-hint-relevant-article' is non-nil."
     (gnorb-gnus-insert-format-letter-maybe header)))
 
 (defun gnorb-gnus-insert-format-tags (header)
-  (if (hash-table-p gnus-registry-db)
+  (if (object-p gnus-registry-db)
       (let* ((id (mail-header-message-id header))
             (entry (nth 1 (assoc id (registry-lookup
                                      gnus-registry-db
diff --git a/packages/gnorb/gnorb.el b/packages/gnorb/gnorb.el
index 103cddd..89cec18 100644
--- a/packages/gnorb/gnorb.el
+++ b/packages/gnorb/gnorb.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2018  Free Software Foundation, Inc.
 
-;; Version: 1.6.2
+;; Version: 1.6.3
 ;; Package-Requires: ((cl-lib "0.5"))
 
 ;; Maintainer: Eric Abrahamsen <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]