bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#23749: 24.3.50; can't make the cursor to the end of a buffer when th


From: Noam Postavsky
Subject: bug#23749: 24.3.50; can't make the cursor to the end of a buffer when that buffer is visible
Date: Sun, 12 Jun 2016 11:51:31 -0400

Cool, could be compacted a little:

(defun insert-into-buffer (buffer text)
  (with-current-buffer buffer
    (beginning-of-line)
    (insert text)
    (let ((buffer-window (get-buffer-window)))
      (if buffer-window
          (set-window-point buffer-window (point-max))
        (goto-char (point-max))))))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]