mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-24 21:41:48 -08:00
Merge from origin/emacs-26
5c91ca8Fix create_process bug breaking eudc-expand-inlinee244fedClarify that nil doesn't match itself as a cl-case clause (Bu...df0e7e2Improve SVG documentationa34ef52Document the "URL" keyword in library headersfbc7f9a* test/lisp/international/mule-tests.el: Avoid local variable...16faff6; * lisp/org/org-table.el: Replace obsolete alias in comment.
This commit is contained in:
commit
a3f26048a9
6 changed files with 21 additions and 16 deletions
|
|
@ -2096,9 +2096,9 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
|
|||
{
|
||||
/* Make the pty be the controlling terminal of the process. */
|
||||
#ifdef HAVE_PTYS
|
||||
/* First, disconnect its current controlling terminal. */
|
||||
if (pty_flag)
|
||||
setsid ();
|
||||
/* First, disconnect its current controlling terminal.
|
||||
Do this even if !PTY_FLAG; see Bug#30762. */
|
||||
setsid ();
|
||||
/* Make the pty's terminal the controlling terminal. */
|
||||
if (pty_flag && forkin >= 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue