Function: shr--have-one-fringe-p

shr--have-one-fringe-p is a byte-compiled function defined in shr.el.gz.

Signature

(shr--have-one-fringe-p)

Documentation

Return non-nil if we know at least one of the fringes has non-zero width.

Source Code

;; Defined in /usr/src/emacs/lisp/net/shr.el.gz
(defun shr--have-one-fringe-p ()
  "Return non-nil if we know at least one of the fringes has non-zero width."
  (and (fboundp 'fringe-columns)
       (or (not (zerop (fringe-columns 'right)))
           (not (zerop (fringe-columns 'left))))))