aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2013-01-11 17:25:10 +0400
committerDmitry Antipov2013-01-11 17:25:10 +0400
commit6020559a093bf243be6cd6a866933b4368ea67cc (patch)
treeb722d61837c6f76447a76f58ac975f4d327ce1e4 /src/ChangeLog
parent30818a239e7b1222ec776603aa29786638efbb47 (diff)
downloademacs-6020559a093bf243be6cd6a866933b4368ea67cc.tar.gz
emacs-6020559a093bf243be6cd6a866933b4368ea67cc.zip
Avoid unnecessary byte position calculation for the gap movement.
Since all users of move_gap do CHAR_TO_BYTE for other purposes anyway, all of them should use move_gap_both instead. * lisp.h (move_gap): Remove prototype. * insdel.c (move_gap): Remove. (move_gap_both): Add eassert. * editfns.c (Ftranspose_regions): Tweak to use move_gap_both. * xml.c (parse_region): Likewise.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f0d875b2027..13a1f1a3858 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12013-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
12013-01-11 Paul Eggert <eggert@cs.ucla.edu> 122013-01-11 Paul Eggert <eggert@cs.ucla.edu>
2 13
3 emacsclient -t should not suspend Emacs server (Bug#13387) 14 emacsclient -t should not suspend Emacs server (Bug#13387)