Function: flymake--suitably-fringed-p
flymake--suitably-fringed-p is a byte-compiled function defined in
flymake.el.gz.
Signature
(flymake--suitably-fringed-p &optional WINDOW)
Documentation
Tell if WINDOW is suitably fringed-up fro Flymake.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defun flymake--suitably-fringed-p (&optional window)
"Tell if WINDOW is suitably fringed-up fro Flymake."
(cl-case flymake-fringe-indicator-position
(left-fringe (< 0 (nth 0 (window-fringes window))))
(right-fringe (< 0 (nth 1 (window-fringes window))))))