]> git.eshelyaron.com Git - emacs.git/commitdiff
Replace the obsolete process-kill-without-query in documentation
authorGlenn Morris <rgm@gnu.org>
Fri, 9 Mar 2018 01:18:18 +0000 (20:18 -0500)
committerAndrew G Cohen <cohen@andy.bu.edu>
Tue, 11 Dec 2018 06:14:01 +0000 (14:14 +0800)
* 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.

lisp/comint.el
lisp/eshell/esh-proc.el
lisp/net/ange-ftp.el
lisp/term.el

index 3163afeff40c3439d20cab7dda34354a0ad40174..838662a59a292dd6d3b31e20ca2606f771a757ae 100644 (file)
@@ -454,8 +454,8 @@ This is run before the process is cranked up."
   "Hook run each time a process is exec'd by `comint-exec'.
 This is called after the process is cranked up.  It is useful for things that
 must be done each time a process is executed in a Comint mode buffer (e.g.,
-`(process-kill-without-query)').  In contrast, the `comint-mode-hook' is only
-executed once when the buffer is created."
+`set-process-query-on-exit-flag').  In contrast, `comint-mode-hook' is only
+executed once, when the buffer is created."
   :type 'hook
   :group 'comint)
 
index f1380852b3b99914d77c867d3a58d1faf276fc9b..b3bd7a7245649ae9459b73b68bcc6789df656a73 100644 (file)
@@ -87,8 +87,8 @@ variable's value to take effect."
   "Called each time a process is exec'd by `eshell-gather-process-output'.
 It is passed one argument, which is the process that was just started.
 It is useful for things that must be done each time a process is
-executed in an eshell mode buffer (e.g., `process-kill-without-query').
-In contrast, `eshell-mode-hook' is only executed once when the buffer
+executed in an eshell mode buffer (e.g., `set-process-query-on-exit-flag').
+In contrast, `eshell-mode-hook' is only executed once, when the buffer
 is created."
   :type 'hook
   :group 'eshell-proc)
index b1e0bf24aa852177b89d03d0e1faafd4116e01a1..c3650afa9a7cea392b4e40e6e25b122c9ef97cbd 100644 (file)
@@ -3633,7 +3633,7 @@ so return the size on the remote host exactly. See RFC 3659."
 ;;                          newname))
 ;;     res)
 ;;     (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel)
-;;     (process-kill-without-query proc)
+;;     (set-process-query-on-exit-flag proc nil)
 ;;     (with-current-buffer (process-buffer proc)
 ;;       (set (make-local-variable 'copy-cont) cont))))
 ;;
index cf7699abc9443d7fafe835d7eea211d4fc143e07..93da33ea5b011aba5390264de7eab8111223a7e7 100644 (file)
@@ -598,8 +598,8 @@ This is run before the process is cranked up."
   "Called each time a process is exec'd by `term-exec'.
 This is called after the process is cranked up.  It is useful for things that
 must be done each time a process is executed in a term mode buffer (e.g.,
-`process-kill-without-query').  In contrast, `term-mode-hook' is only
-executed once when the buffer is created."
+`set-process-query-on-exit-flag').  In contrast, `term-mode-hook' is only
+executed once, when the buffer is created."
   :type 'hook
   :group 'term)