aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2018-03-10 18:30:54 -0800
committerPaul Eggert2018-03-10 18:30:54 -0800
commit767780169b095b15d6be32ac5be1aba00f1ccbc2 (patch)
tree8deacf576ac3b627ce4894253310a48bee3b2b24
parent60c4cf6311b84ed7ec007702a0cdd7881f9f647c (diff)
parent6af509ec672f8b32076007bf17ad8cf45668f4cd (diff)
downloademacs-767780169b095b15d6be32ac5be1aba00f1ccbc2.tar.gz
emacs-767780169b095b15d6be32ac5be1aba00f1ccbc2.zip
Merge from origin/emacs-26
6af509e Replace the obsolete process-kill-without-query in documentation 4df0d15 ; Tiny fix for recent doc change
-rw-r--r--doc/emacs/display.texi2
-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
5 files changed, 8 insertions, 8 deletions
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi
index 499be26004d..42a52279832 100644
--- a/doc/emacs/display.texi
+++ b/doc/emacs/display.texi
@@ -1676,7 +1676,7 @@ line truncation. @xref{Split Window}, for the variable
1676@dfn{word wrap}. Here, each long logical line is divided into two or 1676@dfn{word wrap}. Here, each long logical line is divided into two or
1677more screen lines, like in ordinary line continuation. However, Emacs 1677more screen lines, like in ordinary line continuation. However, Emacs
1678attempts to wrap the line at word boundaries near the right window 1678attempts to wrap the line at word boundaries near the right window
1679edge. (If line's direction is right-to-left, it is wrapped at the 1679edge. (If the line's direction is right-to-left, it is wrapped at the
1680left window edge instead.) This makes the text easier to read, as 1680left window edge instead.) This makes the text easier to read, as
1681wrapping does not occur in the middle of words. 1681wrapping does not occur in the middle of words.
1682 1682
diff --git a/lisp/comint.el b/lisp/comint.el
index 3163afeff40..838662a59a2 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 f1380852b3b..b3bd7a72456 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 b1e0bf24aa8..c3650afa9a7 100644
--- a/lisp/net/ange-ftp.el
+++ b/lisp/net/ange-ftp.el
@@ -3633,7 +3633,7 @@ so return the size on the remote host exactly. See RFC 3659."
3633;; newname)) 3633;; newname))
3634;; res) 3634;; res)
3635;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel) 3635;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel)
3636;; (process-kill-without-query proc) 3636;; (set-process-query-on-exit-flag proc nil)
3637;; (with-current-buffer (process-buffer proc) 3637;; (with-current-buffer (process-buffer proc)
3638;; (set (make-local-variable 'copy-cont) cont)))) 3638;; (set (make-local-variable 'copy-cont) cont))))
3639;; 3639;;
diff --git a/lisp/term.el b/lisp/term.el
index cf7699abc94..93da33ea5b0 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -598,8 +598,8 @@ This is run before the process is cranked up."
598 "Called each time a process is exec'd by `term-exec'. 598 "Called each time a process is exec'd by `term-exec'.
599This is called after the process is cranked up. It is useful for things that 599This is called after the process is cranked up. It is useful for things that
600must be done each time a process is executed in a term mode buffer (e.g., 600must be done each time a process is executed in a term mode buffer (e.g.,
601`process-kill-without-query'). In contrast, `term-mode-hook' is only 601`set-process-query-on-exit-flag'). In contrast, `term-mode-hook' is only
602executed once when the buffer is created." 602executed once, when the buffer is created."
603 :type 'hook 603 :type 'hook
604 :group 'term) 604 :group 'term)
605 605