Function: debbugs-gnu-query:list
debbugs-gnu-query:list is an autoloaded and byte-compiled function
defined in hib-debbugs.el.
Signature
(debbugs-gnu-query:list QUERY-ATTRIBUTE-LIST)
Documentation
Show the results of a Gnu debbugs query with QUERY-ATTRIBUTE-LIST attributes.
Each element of the list should be of the form (attribute . attribute-value). Attribute may be a symbol or a string. Common attributes include: status, severity, and package.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-debbugs.el
;;;###autoload
(defun debbugs-gnu-query:list (query-attribute-list)
"Show the results of a Gnu debbugs query with QUERY-ATTRIBUTE-LIST attributes.
Each element of the list should be of the form (attribute . attribute-value).
Attribute may be a symbol or a string. Common attributes
include: status, severity, and package."
(require 'debbugs)
(setq debbugs-gnu-current-query nil)
(dolist (attr query-attribute-list)
(add-to-list 'debbugs-gnu-current-query
(cons (if (symbolp (car attr))
(car attr)
(intern (car attr)))
(cdr attr))))
(debbugs-gnu-show-reports))