Function: hsys-flymake-display-issue-at-point

hsys-flymake-display-issue-at-point is an interactive and byte-compiled function defined in hsys-flymake.el.

Signature

(hsys-flymake-display-issue-at-point)

Documentation

Display the flymake diagnostic issue at source buffer point, if any.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-flymake.el
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************

(defun hsys-flymake-display-issue-at-point ()
  "Display the flymake diagnostic issue at source buffer point, if any."
  (interactive)
  (let ((issue (hsys-flymake-get-issue-at-position)))
    (when issue
      (message issue))))