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

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

[debbugs-tracker] bug#33975: closed ([PATCH] inhibit read-only text prop


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#33975: closed ([PATCH] inhibit read-only text properties in comint-interrupt-subjob)
Date: Mon, 25 Feb 2019 01:12:01 +0000

Your message dated Sun, 24 Feb 2019 19:11:40 -0600
with message-id <address@hidden>
and subject line Re: bug#33975: [PATCH] inhibit read-only text properties in 
comint-interrupt-subjob
has caused the debbugs.gnu.org bug report #33975,
regarding [PATCH] inhibit read-only text properties in comint-interrupt-subjob
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
33975: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33975
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] inhibit read-only text properties in comint-interrupt-subjob Date: Fri, 04 Jan 2019 10:35:05 -0600 User-agent: mu4e 1.1.0; emacs 27.0.50
Hi -

This patch inhibits read-only properties during comint-interrupt-subjob.
I ran across this while using ESS and (setq comint-prompt-read-only t).
There's a little more info (including a reproducible example) on ESS's
bugtracker.[1]

Thanks,
Alex

From 8e3885c5b9747987cacd3b17b9de29975e7691e3 Mon Sep 17 00:00:00 2001
From: Alex Branham <address@hidden>
Date: Fri, 4 Jan 2019 10:28:09 -0600
Subject: [PATCH] * lisp/comint.el (comint-interrupt-subjob): Inhibit read only

Otherwise with comint-prompt-read-only set to t users can be incapable
of interrupting running busy processes. See ESS's issue tracker for
details: https://github.com/emacs-ess/ESS/issues/792
---
 lisp/comint.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lisp/comint.el b/lisp/comint.el
index 0a6aff2e73..2ed65c1c1c 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -2500,8 +2500,9 @@ comint-clear-buffer
 (defun comint-interrupt-subjob ()
   "Interrupt the current subjob."
   (interactive)
-  (comint-skip-input)
-  (interrupt-process nil comint-ptyp)
+  (let ((inhibit-read-only t))
+    (comint-skip-input)
+    (interrupt-process nil comint-ptyp))
   ;; (process-send-string nil "\n")
   )

--
2.19.2


Attachment: 0001-lisp-comint.el-comint-interrupt-subjob-Inhibit-read-.patch
Description: Text Data

Footnotes:
[1]  https://github.com/emacs-ess/ESS/issues/792

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message --- Subject: Re: bug#33975: [PATCH] inhibit read-only text properties in comint-interrupt-subjob Date: Sun, 24 Feb 2019 19:11:40 -0600 User-agent: mu4e 1.1.0; emacs 27.0.50
On Sat 23 Feb 2019 at 11:01, Eli Zaretskii <address@hidden> wrote:

> "this command" is inaccurate here, as comint-skip-input is not a
> command.  I'd say "the command which called this function" instead.
>
> Other than that, LGTM.  Thanks.

Thanks, fixed and pushed to master as
6a3b1aaa066dac28355ca5d09550947250108950 to appear in Emacs 27

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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