]> code.delx.au - gnu-emacs/blobdiff - src/ChangeLog
Support TAGS targets in the w32 build.
[gnu-emacs] / src / ChangeLog
index fac06961ef906810236d83ce74f8f0edead30a89..1d337527effb9e86613ad8c7c2e3b6a14de99239 100644 (file)
@@ -1,5 +1,102 @@
+2010-10-01  Eli Zaretskii  <eliz@gnu.org>
+
+       * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
+       (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
+       (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
+
+2010-09-30  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * xml.c (parse_string): Use const.
+
+2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * eval.c (Fbacktrace): Don't overwrite print-level on exit.  Also
+       only override Vprint_level if it isn't already bound, and increase
+       the level to 8 to produce more useful backtraces for bug reports.
+
+2010-09-30  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
+
+2010-09-30  Juanma Barranquero  <lekktu@gmail.com>
+
+       * w32console.c (vga_stdcolor_name): Remove unused function;
+       presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
+
+2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnutls.c (emacs_gnutls_handshake): Made into internal function.
+       (Fgnutls_boot): Start the handshake.
+       (emacs_gnutls_read): Perform the handshake from the reader loop.
+       (Fgnutls_boot): Remove some debugging messages.
+       Change indentation throughout to use the Emacs style.
+       (emacs_gnutls_handshake): Cast the fds to something that's
+       possibly the expected length.
+       (emacs_gnutls_write): Return -1 if we try to write before handshake.
+
+       * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
+
+       * process.c (make_process): Set the gnutls_p field to zero by
+       default.
+       (read_process_output): Always call the gnutls_read function if the
+       stream is a gnutls stream.
+       (send_process): Ditto for writes.
+
+       * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
+       or write anything until the state is GNUTLS_STAGE_READY.
+       (Fgnutls_boot): Mark the stream as being a gnutls stream.
+
+2010-09-29  Eli Zaretskii  <eliz@gnu.org>
+
+       * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
+       NEUTRAL_DIR.
+       (handle_invisible_prop, iterate_out_of_display_property)
+       (next_element_from_buffer): If bidi_it.first_elt is set, call
+       bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
+       (Bug#7128)
+
+       * print.c (print_object): Fix format string and argument types for
+       printing a Lisp_Misc_Marker.
+
+       * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
+       (load_overlay_strings, get_overlay_strings_1)
+       (get_overlay_strings, forward_to_next_line_start)
+       (back_to_previous_visible_line_start, reseat, reseat_to_string)
+       (get_next_display_element, next_element_from_string)
+       (next_element_from_c_string, next_element_from_buffer)
+       (move_it_vertically_backward, move_it_by_lines, add_to_log)
+       (message_dolog, message_log_check_duplicate, message2_nolog)
+       (message3, message3_nolog, vmessage, set_message, set_message_1)
+       (hscroll_window_tree, text_outside_line_unchanged_p)
+       (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
+       (find_last_unchanged_at_beg_row)
+       (find_first_unchanged_at_end_row, row_containing_pos)
+       (trailing_whitespace_p, display_mode_element, decode_mode_spec)
+       (display_count_lines, x_produce_glyphs, note_mouse_highlight): Use
+       EMACS_INT for buffer and string positions.
+
+       * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
+       (row_containing_pos): Adjust prototype.
+
+       * lisp.h (pos_visible_p, message2, message2_nolog, message3)
+       (message2_nolog, set_message): Adjust prototypes.
+
+2010-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
+       (Fgnutls_boot): Use SDATA.
+       (Fgnutls_handshake): Remove unused var `max_log_level'.
+
+2010-09-27  Michael Albinus  <michael.albinus@gmx.de>
+
+       * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
+       (Bug#7113)
+
 2010-09-27  Jan Djärv  <jan.h.d@swipnet.se>
 
+       * xgselect.c (xg_select): Clear file descriptors not set from
+       rfds and wfds.
+
        * process.c (wait_reading_process_output): Add missing FD_CLR
        for write_mask (must mirror connect_wait_mask).