Function: kotl-mode:exchange-point-and-mark
kotl-mode:exchange-point-and-mark is a byte-compiled function defined
in kotl-mode.el.
Signature
(kotl-mode:exchange-point-and-mark)
Documentation
Put the mark where point is now, and point where the mark is now.
This is like exchange-point-and-mark, but doesn't activate the mark.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:exchange-point-and-mark ()
"Put the mark where point is now, and point where the mark is now.
This is like `exchange-point-and-mark', but doesn't activate the mark."
(goto-char (prog1 (mark t)
(set-marker (mark-marker) (point) (current-buffer)))))