aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorMichael Albinus2017-08-24 15:53:56 +0200
committerMichael Albinus2017-08-24 15:53:56 +0200
commit0332a0ef2bbe6954f080cb6c9d3f0cc2517a1ab1 (patch)
treedd5db1d8637ddc8ac9f4653d012dced23816bf68 /etc
parentfa5e63e40412f6152dbe079a766845112d598479 (diff)
downloademacs-0332a0ef2bbe6954f080cb6c9d3f0cc2517a1ab1.tar.gz
emacs-0332a0ef2bbe6954f080cb6c9d3f0cc2517a1ab1.zip
Minor improvements for tramp-interrupt-process, documentation
* doc/lispref/processes.texi (Signals to Processes): * etc/NEWS: Document interrupt-process-functions. * lisp/net/tramp.el (tramp-interrupt-process): Test also for `process-live-p'. * src/process.c (Vinterrupt_process_functions): Fix docstring. * test/lisp/net/tramp-tests.el (tramp-test28-interrupt-process): Extend test.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index a9e2f5ae3f1..bf59749a62b 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -335,6 +335,13 @@ probability of data corruption due to techniques Emacs uses to recover
335in these situations. 335in these situations.
336 336
337+++ 337+++
338** 'interrupt-process' consults now the list
339'interrupt-process-functions', which function has to be called in
340order to deliver the SIGINT signal. This allows Tramp to send the
341SIGINT signal to remote asynchronous processes. The hitherto existing
342implementation has been moved to 'internal-default-interrupt-process'.
343
344+++
338** File local and directory local variables are now initialized each 345** File local and directory local variables are now initialized each
339time the major mode is set, not just when the file is first visited. 346time the major mode is set, not just when the file is first visited.
340These local variables will thus not vanish on setting a major mode. 347These local variables will thus not vanish on setting a major mode.
@@ -988,6 +995,9 @@ manual documents how to configure ssh and PuTTY accordingly.
988initialization files. 995initialization files.
989 996
990--- 997---
998*** Tramp is able now to send SIGINT to remote asynchronous processes.
999
1000---
991*** Variable 'tramp-completion-mode' is obsoleted. 1001*** Variable 'tramp-completion-mode' is obsoleted.
992 1002
993--- 1003---