aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-01-10 18:40:58 -0800
committerPaul Eggert2013-01-10 18:40:58 -0800
commitb895642720aaf1d89e22c7cdda11990919622a72 (patch)
tree319a9a095ad702cbb7c93eb0a127444fd7874805 /src/ChangeLog
parenta778dd57d0da9004a72320f8082d4f6220f178e2 (diff)
downloademacs-b895642720aaf1d89e22c7cdda11990919622a72.tar.gz
emacs-b895642720aaf1d89e22c7cdda11990919622a72.zip
emacsclient -t should not suspend Emacs server
* lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal): New functions. * term.c (init_tty): Use them instead of rolling our own code. * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this switches from 'signal' to 'pthread_sigmask', which is safer in multithreaded applications. * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY, which has already arranged for that. (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY. This is the main part of the bug fix. Fixes: debbugs:13387
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index dd22c5388b0..f0d875b2027 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,17 @@
12013-01-11 Paul Eggert <eggert@cs.ucla.edu>
2
3 emacsclient -t should not suspend Emacs server (Bug#13387)
4 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
5 New functions.
6 * term.c (init_tty): Use them instead of rolling our own code.
7 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
8 switches from 'signal' to 'pthread_sigmask', which is safer in
9 multithreaded applications.
10 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
11 which has already arranged for that.
12 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
13 This is the main part of the bug fix.
14
12013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change) 152013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
2 16
3 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around 17 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around