Skip to content

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

(save-excursion
  (goto-char (point-max))
  (insert "foo"))