Function: hywiki--buttonized-region-p
hywiki--buttonized-region-p is a byte-compiled function defined in
hywiki.el.
Signature
(hywiki--buttonized-region-p)
Documentation
Return non-nil when hywiki--buttonize-start/end are in the current buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki--buttonized-region-p ()
"Return non-nil when hywiki--buttonize-start/end are in the current buffer."
(and (marker-position hywiki--buttonize-start)
(eq (marker-buffer hywiki--buttonize-start) (current-buffer))
(marker-position hywiki--buttonize-end)
(eq (marker-buffer hywiki--buttonize-end) (current-buffer))))