]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix to a81223aeaa
authorEric Abrahamsen <eric@ericabrahamsen.net>
Sat, 21 Sep 2019 00:38:03 +0000 (17:38 -0700)
committerEric Abrahamsen <eric@ericabrahamsen.net>
Sat, 21 Sep 2019 00:38:03 +0000 (17:38 -0700)
* lisp/gnus/gnus-registry.el (gnus-registry-article-marks-to-chars):
  (gnus-registry-article-marks-to-names): The registry is an object,
  not a hash table.

lisp/gnus/gnus-registry.el

index ff0d4bad71582c78794b7ffdbb729a8e2aadecba..cc932956f5acebe65d68f779cf3f90a1f5a85f49 100644 (file)
@@ -1007,7 +1007,7 @@ Uses `gnus-registry-marks' to find what shortcuts to install."
 ;; (defalias 'gnus-user-format-function-M 'gnus-registry-article-marks-to-chars)
 (defun gnus-registry-article-marks-to-chars (headers)
   "Show the marks for an article by the :char property."
-  (if (hash-table-p gnus-registry-db)
+  (if (object-p gnus-registry-db)
       (let* ((id (mail-header-message-id headers))
              (marks (when id (gnus-registry-get-id-key id 'mark))))
        (concat (delq nil
@@ -1023,7 +1023,7 @@ Uses `gnus-registry-marks' to find what shortcuts to install."
 ;; (defalias 'gnus-user-format-function-M 'gnus-registry-article-marks-to-names)
 (defun gnus-registry-article-marks-to-names (headers)
   "Show the marks for an article by name."
-  (if (hash-table-p gnus-registry-db)
+  (if (object-p gnus-registry-db)
       (let* ((id (mail-header-message-id headers))
              (marks (when id (gnus-registry-get-id-key id 'mark))))
        (mapconcat (lambda (mark) (symbol-name mark)) marks ","))