aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMichael Albinus2017-08-24 15:53:56 +0200
committerMichael Albinus2017-08-24 15:53:56 +0200
commit0332a0ef2bbe6954f080cb6c9d3f0cc2517a1ab1 (patch)
treedd5db1d8637ddc8ac9f4653d012dced23816bf68 /src/process.c
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 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index e7ee99ab3d9..730caea677f 100644
--- a/src/process.c
+++ b/src/process.c
@@ -8192,8 +8192,8 @@ The variable takes effect when `start-process' is called. */);
8192 Vprocess_adaptive_read_buffering = Qt; 8192 Vprocess_adaptive_read_buffering = Qt;
8193 8193
8194 DEFVAR_LISP ("interrupt-process-functions", Vinterrupt_process_functions, 8194 DEFVAR_LISP ("interrupt-process-functions", Vinterrupt_process_functions,
8195 doc: /* List of functions to be called for `interrupt-function'. 8195 doc: /* List of functions to be called for `interrupt-process'.
8196The arguments of the functions are the same as for `interrupt-function'. 8196The arguments of the functions are the same as for `interrupt-process'.
8197These functions are called in the order of the list, until one of them 8197These functions are called in the order of the list, until one of them
8198returns non-`nil'. */); 8198returns non-`nil'. */);
8199 Vinterrupt_process_functions = list1 (Qinternal_default_interrupt_process); 8199 Vinterrupt_process_functions = list1 (Qinternal_default_interrupt_process);