1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

Merge from origin/emacs-26

ec02c73 Update process filter example (Bug#35044)
This commit is contained in:
Glenn Morris 2019-05-08 07:51:46 -07:00
commit d9d914b292

View File

@ -1688,7 +1688,7 @@ how to do these things:
(save-excursion
;; @r{Insert the text, advancing the process marker.}
(goto-char (process-mark proc))
(insert string)
(insert-before-markers string)
(set-marker (process-mark proc) (point)))
(if moving (goto-char (process-mark proc)))))))
@end group