"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)
"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)
;; 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))))
;;
"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)