]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/comint.el (comint-skip-input): Set inhibit-read-only to t
authorAlex Branham <alex.branham@gmail.com>
Sat, 23 Feb 2019 13:35:01 +0000 (07:35 -0600)
committerAlex Branham <alex.branham@gmail.com>
Mon, 25 Feb 2019 01:10:36 +0000 (19:10 -0600)
Bug#33975

lisp/comint.el

index 0a6aff2e73f30ad55d45e0201113e1aab83458e5..a51413dc655a1f10e8acdb728d8438ec03e33915 100644 (file)
@@ -2536,13 +2536,16 @@ Useful if you accidentally suspend the top-level process."
 
 (defun comint-skip-input ()
   "Skip all pending input, from last stuff output by interpreter to point.
-This means mark it as if it had been sent as input, without sending it."
+This means mark it as if it had been sent as input, without
+sending it.  The command keys used to trigger the command that
+called this function are inserted into the buffer."
   (let ((comint-input-sender 'ignore)
        (comint-input-filter-functions nil))
     (comint-send-input t t))
   (end-of-line)
   (let ((pos (point))
-       (marker (process-mark (get-buffer-process (current-buffer)))))
+       (marker (process-mark (get-buffer-process (current-buffer))))
+        (inhibit-read-only t))
     (insert "  " (key-description (this-command-keys)))
     (if (= marker pos)
        (set-marker marker (point)))))