diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dd22c5388b0..13a1f1a3858 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,28 @@ | |||
| 1 | 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | Avoid unnecessary byte position calculation for the gap movement. | ||
| 4 | Since all users of move_gap do CHAR_TO_BYTE for other purposes | ||
| 5 | anyway, all of them should use move_gap_both instead. | ||
| 6 | * lisp.h (move_gap): Remove prototype. | ||
| 7 | * insdel.c (move_gap): Remove. | ||
| 8 | (move_gap_both): Add eassert. | ||
| 9 | * editfns.c (Ftranspose_regions): Tweak to use move_gap_both. | ||
| 10 | * xml.c (parse_region): Likewise. | ||
| 11 | |||
| 12 | 2013-01-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 13 | |||
| 14 | emacsclient -t should not suspend Emacs server (Bug#13387) | ||
| 15 | * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal): | ||
| 16 | New functions. | ||
| 17 | * term.c (init_tty): Use them instead of rolling our own code. | ||
| 18 | * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this | ||
| 19 | switches from 'signal' to 'pthread_sigmask', which is safer in | ||
| 20 | multithreaded applications. | ||
| 21 | * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY, | ||
| 22 | which has already arranged for that. | ||
| 23 | (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY. | ||
| 24 | This is the main part of the bug fix. | ||
| 25 | |||
| 1 | 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change) | 26 | 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change) |
| 2 | 27 | ||
| 3 | * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around | 28 | * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around |