Function: hsys-flymake-get-issue-at-position

hsys-flymake-get-issue-at-position is a byte-compiled function defined in hsys-flymake.el.

Signature

(hsys-flymake-get-issue-at-position &optional POS)

Documentation

With flymake enabled and POS on its highlighted text, return the issue.

If no issue at POS, return nil. POS is optional and defaults to point.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-flymake.el
(defun hsys-flymake-get-issue-at-position (&optional pos)
  "With flymake enabled and POS on its highlighted text, return the issue.
If no issue at POS, return nil.  POS is optional and defaults to point."
  (when (and (featurep 'flymake) flymake-mode)
    (let* ((diag (get-char-property (or pos (point)) 'flymake-diagnostic))
	   (issue (when diag (flymake--diag-text diag))))
      issue)))