Function: hyrolo-display-format

hyrolo-display-format is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-display-format START END)

Documentation

Delete whitespace at end of HyRolo display buffer region _START and _END.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-display-format (_start _end)
  "Delete whitespace at end of HyRolo display buffer region _START and _END."
  (delete-region (point) (progn (skip-chars-backward " \t\n\r") (point)))
  (insert "\n"))