Function: hsys-flymake-display-this-or-next-issue

hsys-flymake-display-this-or-next-issue is an interactive and byte-compiled function defined in hsys-flymake.el.

Signature

(hsys-flymake-display-this-or-next-issue)

Documentation

Display the source buffer flymake diagnostic at point or else the next one.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-flymake.el
(defun hsys-flymake-display-this-or-next-issue ()
  "Display the source buffer flymake diagnostic at point or else the next one."
  (interactive)
  (or (hsys-flymake-display-issue-at-point)
      (call-interactively 'flymake-goto-next-error)))