Function: ibut:delete-occurrence

ibut:delete-occurrence is a byte-compiled function defined in hbut.el.

Signature

(ibut:delete-occurrence START END)

Documentation

Delete Hyperbole implicit button between START and END.

Assume caller has checked that there is an implicit button at point and has saved any original point to which to return.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun    ibut:delete-occurrence (start end)
  "Delete Hyperbole implicit button between START and END.
Assume caller has checked that there is an implicit button at point and
has saved any original point to which to return."
  (goto-char start)
  (delete-region start end)
  (just-one-space)
  (run-hooks 'ibut-delete-hook))