aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-03-08 20:18:18 -0500
committerGlenn Morris2018-03-08 20:18:18 -0500
commit6af509ec672f8b32076007bf17ad8cf45668f4cd (patch)
treeafbd4b953383cacf3c9cf404c190c99083698aba
parent4df0d159631fd58f58e0e475c93ab61910c5d1bf (diff)
downloademacs-6af509ec672f8b32076007bf17ad8cf45668f4cd.tar.gz
emacs-6af509ec672f8b32076007bf17ad8cf45668f4cd.zip
Replace the obsolete process-kill-without-query in documentation
* lisp/comint.el (comint-exec-hook): * lisp/term.el (term-exec-hook): * lisp/eshell/esh-proc.el (eshell-exec-hook): Doc fixes re the obsolete process-kill-without-query. ; * lisp/net/ange-ftp.el: Comment.
-rw-r--r--lisp/comint.el4
-rw-r--r--lisp/eshell/esh-proc.el4
-rw-r--r--lisp/net/ange-ftp.el2
-rw-r--r--lisp/term.el4
4 files changed, 7 insertions, 7 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 9e5e7c69d97..1e4c0d33ee9 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -454,8 +454,8 @@ This is run before the process is cranked up."
454 "Hook run each time a process is exec'd by `comint-exec'. 454 "Hook run each time a process is exec'd by `comint-exec'.
455This is called after the process is cranked up. It is useful for things that 455This is called after the process is cranked up. It is useful for things that
456must be done each time a process is executed in a Comint mode buffer (e.g., 456must be done each time a process is executed in a Comint mode buffer (e.g.,
457`(process-kill-without-query)'). In contrast, the `comint-mode-hook' is only 457`set-process-query-on-exit-flag'). In contrast, `comint-mode-hook' is only
458executed once when the buffer is created." 458executed once, when the buffer is created."
459 :type 'hook 459 :type 'hook
460 :group 'comint) 460 :group 'comint)
461 461
diff --git a/lisp/eshell/esh-proc.el b/lisp/eshell/esh-proc.el
index 59fb9b926d4..94401c5daa5 100644
--- a/lisp/eshell/esh-proc.el
+++ b/lisp/eshell/esh-proc.el
@@ -87,8 +87,8 @@ variable's value to take effect."
87 "Called each time a process is exec'd by `eshell-gather-process-output'. 87 "Called each time a process is exec'd by `eshell-gather-process-output'.
88It is passed one argument, which is the process that was just started. 88It is passed one argument, which is the process that was just started.
89It is useful for things that must be done each time a process is 89It is useful for things that must be done each time a process is
90executed in an eshell mode buffer (e.g., `process-kill-without-query'). 90executed in an eshell mode buffer (e.g., `set-process-query-on-exit-flag').
91In contrast, `eshell-mode-hook' is only executed once when the buffer 91In contrast, `eshell-mode-hook' is only executed once, when the buffer
92is created." 92is created."
93 :type 'hook 93 :type 'hook
94 :group 'eshell-proc) 94 :group 'eshell-proc)
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el
index e62bee4499e..9b23b8a4d89 100644
--- a/lisp/net/ange-ftp.el
+++ b/lisp/net/ange-ftp.el
@@ -3622,7 +3622,7 @@ so return the size on the remote host exactly. See RFC 3659."
3622;; newname)) 3622;; newname))
3623;; res) 3623;; res)
3624;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel) 3624;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel)
3625;; (process-kill-without-query proc) 3625;; (set-process-query-on-exit-flag proc nil)
3626;; (with-current-buffer (process-buffer proc) 3626;; (with-current-buffer (process-buffer proc)
3627;; (set (make-local-variable 'copy-cont) cont)))) 3627;; (set (make-local-variable 'copy-cont) cont))))
3628;; 3628;;
diff --git a/lisp/term.el b/lisp/term.el
index a470873a823..f4a1299f279 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -612,8 +612,8 @@ This is run before the process is cranked up."
612 "Called each time a process is exec'd by `term-exec'. 612 "Called each time a process is exec'd by `term-exec'.
613This is called after the process is cranked up. It is useful for things that 613This is called after the process is cranked up. It is useful for things that
614must be done each time a process is executed in a term mode buffer (e.g., 614must be done each time a process is executed in a term mode buffer (e.g.,
615`process-kill-without-query'). In contrast, `term-mode-hook' is only 615`set-process-query-on-exit-flag'). In contrast, `term-mode-hook' is only
616executed once when the buffer is created." 616executed once, when the buffer is created."
617 :type 'hook 617 :type 'hook
618 :group 'term) 618 :group 'term)
619 619