Function: newsticker--process-auto-mark-filter-match

newsticker--process-auto-mark-filter-match is a byte-compiled function defined in newst-backend.el.gz.

Signature

(newsticker--process-auto-mark-filter-match ITEM PATTERN)

Documentation

Process ITEM that matches an auto-mark-filter PATTERN.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defun newsticker--process-auto-mark-filter-match (item pattern)
  "Process ITEM that matches an auto-mark-filter PATTERN."
  (let ((age (nth 0 pattern))
        (place  (nth 1 pattern))
        (regexp (nth 2 pattern)))
    (newsticker--debug-msg "Auto-mark-filter %s matches `%s'"
                           pattern (newsticker--title item))
    (setcar (nthcdr 4 item) age)
    (nconc (newsticker--extra item)
           (list (list 'newsticker-auto-mark nil
                       (format "age=%s, title/desc=%s, regexp=%s"
                               age place regexp))))))