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

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

bug#35334: 26.2; Changes to position of point are undone during with-cur


From: Noam Postavsky
Subject: bug#35334: 26.2; Changes to position of point are undone during with-current-buffer if window is visible but not current
Date: Sat, 27 Apr 2019 17:07:51 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux)

>      (defun ordinary-insertion-filter (proc string)
>        (when (buffer-live-p (process-buffer proc))
>          (with-current-buffer (process-buffer proc)
>            (let ((moving (= (point) (process-mark proc))))
>              (save-excursion
>                ;; Insert the text, advancing the process marker.
>                (goto-char (process-mark proc))
>                (insert-before-markers string) ; <------------ change here
>                (set-marker (process-mark proc) (point)))
>              (if moving (goto-char (process-mark proc)))))))

If we make this update in the manual, would that sufficiently clarify
the sitatuation, or do we need anything else?






reply via email to

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