diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 66 |
1 files changed, 56 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index af03fa54291..c54d4bee7e9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,59 @@ | |||
| 1 | 2013-03-06 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * search.c (find_newline_no_quit): Rename from find_next_newline. | ||
| 4 | Add commentary. | ||
| 5 | |||
| 6 | * lisp.h (find_newline_no_quit): Rename prototype. | ||
| 7 | |||
| 8 | * xdisp.c (back_to_previous_line_start) | ||
| 9 | (forward_to_next_line_start, get_visually_first_element) | ||
| 10 | (move_it_vertically_backward): Callers of find_newline_no_quit changed. | ||
| 11 | * indent.c (vmotion): Callers of find_newline_no_quit changed. | ||
| 12 | * bidi.c (bidi_find_paragraph_start): Callers of | ||
| 13 | find_newline_no_quit changed. | ||
| 14 | |||
| 15 | * msdos.c: Change encoding to cp850. (Bug#13879) | ||
| 16 | (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts. | ||
| 17 | |||
| 18 | 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 19 | |||
| 20 | Coding system support cleanup and minor refactoring. | ||
| 21 | * coding.h (enum coding_result_code): Remove | ||
| 22 | CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM. | ||
| 23 | (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL. | ||
| 24 | (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY) | ||
| 25 | (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION) | ||
| 26 | (CODING_MODE_SAFE_ENCODING): Rearrange bit values. | ||
| 27 | (decode_coding_region, encode_coding_region, decode_coding_string): | ||
| 28 | Remove unused compatibility macros. | ||
| 29 | * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove. | ||
| 30 | (record_conversion_result): Adjust user. | ||
| 31 | (syms_of_coding): Likewise. | ||
| 32 | (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA. | ||
| 33 | (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE. | ||
| 34 | (decode_coding_object): Simplify since xrealloc never returns NULL. | ||
| 35 | Add eassert. | ||
| 36 | |||
| 37 | 2013-03-06 Paul Eggert <eggert@cs.ucla.edu> | ||
| 38 | |||
| 39 | Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881). | ||
| 40 | * sysdep.c (list_system_processes) | ||
| 41 | [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]: | ||
| 42 | Make it a stub in this case; otherwise the build might fail, | ||
| 43 | and this code hasn't been tested on such hosts anyway. | ||
| 44 | Problem reported by Nelson H. F. Beebe in | ||
| 45 | <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html> | ||
| 46 | and analyzed by Jérémie Courrèges-Anglas in | ||
| 47 | <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>. | ||
| 48 | |||
| 49 | 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 50 | |||
| 51 | * lisp.h (find_next_newline_no_quit): Rename to find_next_newline. | ||
| 52 | * xdisp.c (back_to_previous_line_start, forward_to_next_line_start) | ||
| 53 | (get_visually_first_element, move_it_vertically_backward): Ajust users. | ||
| 54 | * bidi.c (bidi_find_paragraph_start): Likewise. | ||
| 55 | * indent.c (vmotion): Likewise. | ||
| 56 | |||
| 1 | 2013-03-05 Paul Eggert <eggert@cs.ucla.edu> | 57 | 2013-03-05 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 58 | ||
| 3 | FILE's lock is now always .#FILE and may be a regular file (Bug#13807). | 59 | FILE's lock is now always .#FILE and may be a regular file (Bug#13807). |
| @@ -57,16 +113,6 @@ | |||
| 57 | to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov | 113 | to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov |
| 58 | <dmantipov@yandex.ru>. | 114 | <dmantipov@yandex.ru>. |
| 59 | 115 | ||
| 60 | 2013-03-05 Paul Eggert <eggert@cs.ucla.edu> | ||
| 61 | |||
| 62 | Fix a build failure on OpenBSD 4.x and MirBSD. | ||
| 63 | * sysdep.c (KERN_PROC, kinfo_proc) | ||
| 64 | [BSD_SYSTEM && (!KERN_PROC || __MirBSD__)]: | ||
| 65 | Define to KERN_PROC2 and kinfo_proc2, for OpenBSD 4.9 and MirBSD. | ||
| 66 | list-system-processes still returns nil, but at least it doesn't crash. | ||
| 67 | Problem reported by Nelson H. F. Beebe in | ||
| 68 | <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>. | ||
| 69 | |||
| 70 | 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru> | 116 | 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru> |
| 71 | 117 | ||
| 72 | * composite.c (get_composition_id, fill_gstring_header): | 118 | * composite.c (get_composition_id, fill_gstring_header): |