Function: hmail:msg-narrow

hmail:msg-narrow is an autoloaded and byte-compiled function defined in hmail.el.

Signature

(hmail:msg-narrow &optional MSG-START MSG-END)

Documentation

Narrows buffer to displayable part of current message.

Its displayable part begins at optional MSG-START and ends at or before MSG-END.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmail.el
;;;###autoload
(defun hmail:msg-narrow (&optional msg-start msg-end)
  "Narrows buffer to displayable part of current message.
Its displayable part begins at optional MSG-START and ends at or before
MSG-END."
  (when (hmail:reader-p)
    (rmail:msg-widen))
  (setq msg-start (or msg-start (point-min))
	msg-end (or msg-end (point-max)))
  (narrow-to-region msg-start (hmail:hbdata-start msg-start msg-end)))