Function: hyrolo-set-display-buffer

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

Signature

(hyrolo-set-display-buffer)

Documentation

For current command, set the HyRolo display buffer as the curr buffer.

Make it writeable and return the display buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-set-display-buffer ()
  "For current command, set the HyRolo display buffer as the curr buffer.
Make it writeable and return the display buffer."
  (prog1 (set-buffer (get-buffer-create hyrolo-display-buffer))
    (setq buffer-read-only nil)))