Function: shr-adaptive-fill-function

shr-adaptive-fill-function is a byte-compiled function defined in shr.el.gz.

Signature

(shr-adaptive-fill-function)

Documentation

Return a fill prefix for the paragraph at point.

Source Code

;; Defined in /usr/src/emacs/lisp/net/shr.el.gz
(defun shr-adaptive-fill-function ()
  "Return a fill prefix for the paragraph at point."
  (when-let* ((prefix (get-text-property (point) 'shr-prefix-length)))
    (buffer-substring (point) (+ (point) prefix))))