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

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

[elpa] externals/gnorb 3940f46 431/449: [gnorb] Fix to previous commit,


From: Stefan Monnier
Subject: [elpa] externals/gnorb 3940f46 431/449: [gnorb] Fix to previous commit, bump to 1.6.3
Date: Fri, 27 Nov 2020 23:16:26 -0500 (EST)

branch: externals/gnorb
commit 3940f46317e2a8314f064bf5407142a0fe594882
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    [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.
---
 gnorb-gnus.el | 4 ++--
 gnorb.el      | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnorb-gnus.el b/gnorb-gnus.el
index 15c83b5..6dbda6e 100644
--- a/gnorb-gnus.el
+++ b/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/gnorb.el b/gnorb.el
index 0253673..846401f 100644
--- a/gnorb.el
+++ b/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 <eric@ericabrahamsen.net>



reply via email to

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