Function: forge-notification-at-point

forge-notification-at-point is a byte-compiled function defined in forge-notify.el.

Signature

(forge-notification-at-point &optional DEMAND)

Documentation

Return the notification at point, casting a topic if necessary.

If there is no such notification and DEMAND is non-nil, then signal an error.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-notify.el
(defun forge-notification-at-point (&optional demand)
  "Return the notification at point, casting a topic if necessary.
If there is no such notification and DEMAND is non-nil, then
signal an error."
  (or (magit-section-value-if 'notification)
      (and$ (forge-topic-at-point)
            (forge-get-notification $))
      (and demand (user-error "No notification at point"))))