From: João Távora Date: Wed, 11 Dec 2019 21:26:35 +0000 (+0100) Subject: Disable undo in the process buffers of a JSONRPC connection X-Git-Tag: emacs-27.0.90~358 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=73f37da12dc7808a2be1d38787642f4900632b49;p=emacs.git Disable undo in the process buffers of a JSONRPC connection * lisp/jsonrpc.el (initialize-instance jsonrpc-process-connection): Use buffer-disable-undo in stdout and stderr buffers. * lisp/jsonrpc.el (Version): Bump to 1.0.9 --- diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el index abab445fe5c..6e0a012d5f8 100644 --- a/lisp/jsonrpc.el +++ b/lisp/jsonrpc.el @@ -5,7 +5,7 @@ ;; Author: João Távora ;; Keywords: processes, languages, extensions ;; Package-Requires: ((emacs "25.2")) -;; Version: 1.0.8 +;; Version: 1.0.9 ;; This is an Elpa :core package. Don't use functionality that is not ;; compatible with Emacs 25.2. @@ -374,8 +374,11 @@ connection object, called when the process dies .") (set-process-filter proc #'jsonrpc--process-filter) (set-process-sentinel proc #'jsonrpc--process-sentinel) (with-current-buffer (process-buffer proc) + (buffer-disable-undo) (set-marker (process-mark proc) (point-min)) (let ((inhibit-read-only t)) (erase-buffer) (read-only-mode t) proc)) + (with-current-buffer stderr + (buffer-disable-undo)) (process-put proc 'jsonrpc-connection conn))) (cl-defmethod jsonrpc-connection-send ((connection jsonrpc-process-connection)