Function: ibtypes::debbugs-gnu-query

ibtypes::debbugs-gnu-query is a byte-compiled function defined in hib-debbugs.el.

Signature

(ibtypes::debbugs-gnu-query)

Documentation

Display the results of a Debbugs query from a bug reference string around point.

This works in most types of buffers. If the query includes a single id number, display the original message submission for that id and allow browsing of the followup discussion. Accepts the following buffer text formats (with point prior to any attribute):

   bug#id-number or bug# id-number or bug #id-number
   bug?attr1=val1&attr2=val2&attr3=val3
   bug#id-number?attr1=val1&attr2=val2&attr3=val3

Note that issue or debbugs may be used as well in place of bug.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-debbugs.el
(defact debbugs-gnu-query (id)
  "Display the discussion of Gnu debbugs ID (a positive integer)."
  (require 'debbugs-gnu)
  (when (debbugs-get-status id)
    (debbugs-gnu-bugs id)
    (debbugs-gnu-show-discussion)))