aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2013-02-20 11:37:06 -0500
committerStefan Monnier2013-02-20 11:37:06 -0500
commitb6c2bfff02239197fc855c0575def855afab01c7 (patch)
treed5e7870aeaa28b3bbeb3bdb77b0bcac886b939cc /src/ChangeLog
parent5079cfefc0fe7152bae4ea175f5679bca42e0cbd (diff)
downloademacs-b6c2bfff02239197fc855c0575def855afab01c7.tar.gz
emacs-b6c2bfff02239197fc855c0575def855afab01c7.zip
* lisp/simple.el (command-execute): Move from C. Add obsolete check.
(extended-command-history): Move from C. * src/keyboard.c (Qcommand_execute): New var. (command_loop_1, read_char): Use it. (Fcommand_execute): Remove, replace by an Elisp implementation. (syms_of_keyboard): Adjust accordingly.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b04b344edf2..9423484c656 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,12 +1,21 @@
12013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * keyboard.c (Qcommand_execute): New var.
4 (command_loop_1, read_char): Use it.
5 (Fcommand_execute): Remove, replace by an Elisp implementation.
6 (syms_of_keyboard): Adjust accordingly.
7
12013-02-19 Daniel Colascione <dancol@dancol.org> 82013-02-19 Daniel Colascione <dancol@dancol.org>
9
2 * sheap.c (report_sheap_usage): Use message, not message1, so 10 * sheap.c (report_sheap_usage): Use message, not message1, so
3 that we don't try to create a buffer while we're in the middle 11 that we don't try to create a buffer while we're in the middle
4 of dumping Emacs. Explain why. 12 of dumping Emacs. Explain why.
13
52013-02-20 Dmitry Antipov <dmantipov@yandex.ru> 142013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
6 * search.c (find_newline): Return byte position in bytepos. 15 * search.c (find_newline): Return byte position in bytepos.
7 Adjust comment. 16 Adjust comment.
8 (find_next_newline_no_quit, find_before_next_newline): Add 17 (find_next_newline_no_quit, find_before_next_newline):
9 bytepos argument. 18 Add bytepos argument.
10 * lisp.h (find_newline, find_next_newline_no_quit) 19 * lisp.h (find_newline, find_next_newline_no_quit)
11 (find_before_next_newline): Adjust prototypes. 20 (find_before_next_newline): Adjust prototypes.
12 * bidi.c (bidi_find_paragraph_start): 21 * bidi.c (bidi_find_paragraph_start):