mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix to a81223aeaa
* 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.
This commit is contained in:
parent
7828001aef
commit
87b7c06958
1 changed files with 2 additions and 2 deletions
|
|
@ -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 ","))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue