Function: forge-issue-at-point
forge-issue-at-point is a byte-compiled function defined in
forge-issue.el.
Signature
(forge-issue-at-point &optional DEMAND)
Documentation
Return the issue at point.
If there is no such issue and DEMAND is non-nil, then signal an error.
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-issue.el
(defun forge-issue-at-point (&optional demand)
"Return the issue at point.
If there is no such issue and DEMAND is non-nil, then signal
an error."
(or (thing-at-point 'forge-issue)
(magit-section-value-if 'issue)
(and demand (user-error "No issue at point"))))