minibuffer

How to insert foo at the end of buffer without changing point with Emacs Lisp?

August 27, 2023
(save-excursion
  (goto-char (point-max))
  (insert "foo"))