Function: gnus-registry-do-marks
gnus-registry-do-marks is a byte-compiled function defined in
gnus-registry.el.gz.
Signature
(gnus-registry-do-marks TYPE FUNCTION)
Documentation
For each known mark, call FUNCTION for each cell of type TYPE.
FUNCTION should take two parameters, a mark symbol and the cell value.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
;; registry marks glue
(defun gnus-registry-do-marks (type function)
"For each known mark, call FUNCTION for each cell of type TYPE.
FUNCTION should take two parameters, a mark symbol and the cell value."
(dolist (mark-info gnus-registry-marks)
(let* ((mark (car-safe mark-info))
(data (cdr-safe mark-info))
(cell-data (plist-get data type)))
(when cell-data
(funcall function mark cell-data)))))