From: Glenn Morris Date: Sun, 24 Feb 2013 19:45:17 +0000 (-0800) Subject: Merge from emacs-24; up to 2012-12-22T19:09:52Z!rgm@gnu.org X-Git-Tag: emacs-24.3.90~173^2~6^2~51 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1abfd3e85fa9b340699430cd9e15dd9f0073bdbe;p=emacs.git Merge from emacs-24; up to 2012-12-22T19:09:52Z!rgm@gnu.org --- 1abfd3e85fa9b340699430cd9e15dd9f0073bdbe diff --cc doc/lispref/ChangeLog index 355d0b57be5,722e741a119..c4f45d02a05 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@@ -1,15 -1,7 +1,19 @@@ -2013-02-23 Eli Zaretskii ++2013-02-24 Eli Zaretskii + + * files.texi (Magic File Names): Improve wording and indexing. + +2013-02-21 Glenn Morris + + * display.texi (Multi-Frame Images): Minor rephrasing. + +2013-02-20 Glenn Morris + + * display.texi (GIF Images, TIFF Images): Delete these nodes. + (ImageMagick Images): For :index, use an xref rather than duplicating. + (Other Image Types): Add GIF, adjust formatting. + (Multi-Frame Images): Rename from Animated Images. Expand section. + * elisp.texi (Top): Update menu for these changes. + 2013-02-19 Glenn Morris * text.texi (Change Hooks): Fix typo. diff --cc doc/misc/ChangeLog index 9a4f4c10610,63cbcdc5a15..632f06d22b1 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@@ -1,3 -1,11 +1,10 @@@ + 2013-02-24 Michael Albinus + - Port documentation to Texinfo 5.0. - ++ Port Tramp documentation to Texinfo 5.0. + * tramp.texi (top) [xxx, yyy, trampfn]: Remove superfluous @c. + (Filename Syntax): Do not use @trampfn{} in @item. + (Filename completion): Use @columnfractions in @multitable. + 2013-02-22 Glenn Morris * flymake.texi (Syntax check statuses): Fix multitable continued rows. diff --cc src/ChangeLog index cc8cb84831a,42a2fd0dcac..8d3fc1e56fb --- a/src/ChangeLog +++ b/src/ChangeLog @@@ -1,50 -1,18 +1,64 @@@ + 2013-02-24 Andreas Schwab + + * xdisp.c (set_message): Only check for debug-on-message if STRING + is a string. (Bug#13797) + + 2013-02-24 Paul Eggert + + Fix regression introduced by July 10 filelock.c patch. + * filelock.c (fill_in_lock_file_name): Fix crash caused by the + 2012-07-10 patch to this file. Reported by Eli Zaretskii in + + and diagnosed by Andreas Schwab in + . + -2013-02-18 Eli Zaretskii +2013-02-22 Paul Eggert + + Assume C89 or better. + * ralloc.c (SIZE, POINTER, NIL): + * vm-limit.c (POINTER): + Remove, replacing all uses with C89 equivalents. These old + symbols were present only for porting to pre-C89 platforms. + +2013-02-22 Claudio Bley + + * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop. + This avoids warning messages reported as part of Bug#13546. + +2013-02-21 Ken Brown + + * sheap.c (report_sheap_usage): Fix arguments of message1_no_log. + +2013-02-20 Stefan Monnier + + * sheap.c (report_sheap_usage): Prefer message1_nolog. + + * 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. + +2013-02-19 Daniel Colascione + + * sheap.c (report_sheap_usage): Use message, not message1, so + that we don't try to create a buffer while we're in the middle + of dumping Emacs. Explain why. + +2013-02-20 Dmitry Antipov + * search.c (find_newline): Return byte position in bytepos. + Adjust comment. + (find_next_newline_no_quit, find_before_next_newline): + Add bytepos argument. + * lisp.h (find_newline, find_next_newline_no_quit) + (find_before_next_newline): Adjust prototypes. + * bidi.c (bidi_find_paragraph_start): + * editfns.c (Fconstrain_to_field, Fline_end_position): + * indent.c (compute_motion, vmotion): + * xdisp.c (back_to_previous_line_start, forward_to_next_line_start): + (get_visually_first_element, move_it_vertically_backward): + Adjust users and avoid calls to CHAR_TO_BYTE where appropriate. + +2013-02-19 Eli Zaretskii * w32proc.c (new_child): Avoid leaking handles if the subprocess resources were not orderly released.