Function: kotl-mode:buffer-empty-p
kotl-mode:buffer-empty-p is a byte-compiled function defined in
kotl-mode.el.
Signature
(kotl-mode:buffer-empty-p)
Documentation
Return non-nil iff there are no outline cells within current buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:buffer-empty-p ()
"Return non-nil iff there are no outline cells within current buffer."
(save-excursion
(goto-char (point-min))
(looking-at "[\n\r]*\\'")))