Function: debbugs-gnu-query:help

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

Signature

(debbugs-gnu-query:help BUT)

Documentation

Make a Gnu debbugs id number at point display the pretty-printed bug status.

The id number can optionally be prefixed with a # sign. Ignore other types of GNU debbugs query strings.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hib-debbugs.el
(defun debbugs-gnu-query:help (_but)
  "Make a Gnu debbugs id number at point display the pretty-printed bug status.
The id number can optionally be prefixed with a # sign.
Ignore other types of GNU debbugs query strings."
  (if (and (debbugs-version-sufficient-p)
	   (debbugs-query:at-p)
	   (match-beginning 2))
      (debbugs-query:status (string-to-number (match-string 2)))
    ;; Non-single issue query, show standard button help.
    (hkey-help t)))