(last_command_char): For clarity, rename to...
[bpt/emacs.git] / src / ChangeLog
index 9e8ec82..22d944a 100644 (file)
@@ -1,5 +1,97 @@
+2009-01-09  Glenn Morris  <rgm@gnu.org>
+
+       * keyboard.c (last_command_char): For clarity, rename to...
+       (last_command-event): ... and update all users.
+       (last_input_char): For clarity, rename to...
+       (last_input_event): ... and update all users.
+       (last-command-char, last-input-char): Move to subr.el as aliases.
+       * cmds.c, commands.h: Update for last_command_char rename.
+
+2009-01-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * font.c (font_open_for_lface): Handle unspecified height
+       attribute.
+
+2009-01-08  Jason Rumney  <jasonr@gnu.org>
+
+       * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
+       (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
+       (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
+       Don't declare.
+       (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
+       (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
+
+2009-01-07  Kenichi Handa  <handa@m17n.org>
+
+       * fileio.c (Finsert_file_contents): In the case of replace,
+       remeber the coding system used for decoding in
+       coding_system (Bug#1039).
+
+       * coding.c (decode_coding_utf_8): Check byte_after_cr before
+       breaking the loop.  (Bug#870)
+       (decode_coding_utf_16, decode_coding_emacs_mule)
+       (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
+       (decode_coding_charset): Likewise.
+
+2009-01-05  Martin Rudalics  <rudalics@gmx.at>
+
+       * frame.c (x_set_frame_parameters): Make sure height (width) get
+       applied when fullwidth (fullheight) is set.  (Bug#1522)
+
+2009-01-04  Juanma Barranquero  <lekktu@gmail.com>
+
+       * w32.c: Use 64-bit arithmetic to do FILETIME conversions.  (Bug#1766)
+       (utc_base): Declare as ULONGLONG, not long double.
+       (convert_time_raw): Delete.
+       (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
+       (initialize_utc_base): New function.
+       (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
+       (convert_from_time_t): Use initialize_utc_base; compute result with
+       64-bit arithmetic.
+       (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
+
+2009-01-03  Eli Zaretskii  <eliz@gnu.org>
+
+       * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
+       (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
+       (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
+       (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
+       [!subprocesses]: Define.
+       (syms_of_process) [!subprocesses]: Intern and staticpro them.
+       (Flist_system_processes, Fsystem_process_attributes)
+       [!subprocesses]: Call list_system_processes and
+       system_process_attributes instead of returning Qnil.
+
+       * dosfns.c (system_process_attributes, list_system_processes):
+       New functions.
+
+       * vm-limit.c (ret_lim_data) [MSDOS]: New function.
+
+       * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
+       Don't use the default (no-op) implementation.
+
+2009-01-03  Jason Rumney  <jasonr@gnu.org>
+
+       * keyboard.c (parse_modifiers_uncached): Wheel events are
+       clicks (bug#687).
+
+       * w32term.c (x_query_colors, x_query_color): New functions.
+
+       * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
+       (svg_load_image): Cast returned pointers from dynamically loaded
+       functions.  Eliminate W32 specific code.
+
 2009-01-02  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * nsfns.m (x_set_foreground_color, x_set_background_color)
+       (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
+       (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
+       x_ prefix instead of ns_.  Update references.
+       (syms_of_nsfns): Add a FIXME comment.
+
+       * nsterm.m (x_set_cursor_type): New prototype.
+       (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
+
        * sysdep.c (system_process_attributes): Provide Qtime and Qctime
        for Solaris instead of incorrectly providing Qutime and Qcutime.
 
 
 2009-01-02  Jason Rumney  <jasonr@gnu.org>
 
-       * image.c: (Qgobject): New symbol.
+       * image.c (Qgobject): New symbol.
        (syms_of_image): Initialize it.
        (init_svg_functions): Load some functions from gobject library.
 
 
 2009-01-01  Jason Rumney  <jasonr@gnu.org>
 
-       * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
+       * w32term.c (x_new_font): Return font object, not fontset.  (Bug#119)
        Don't block input, as per earlier xterm.c changes.
 
 2008-12-31  Adrian Robert  <Adrian.B.Robert@gmail.com>
 
        * font.h (struct font_driver): New member get_variation_glyphs.
 
-       * font.c (font_range): Don't require a font for a variation
-       selector.
+       * font.c (font_range): Don't require a font for a variation selector.
        (Ffont_variation_glyphs): New function.
        (syms_of_font): Defsubr it.
 
 2008-12-30  Jason Rumney  <jasonr@gnu.org>
 
        * frame.c (store_frame_param, x_get_arg): Enable newer code on
-       WINDOWSNT too, as related changes have already been synced. (Bug#117)
+       WINDOWSNT too, as related changes have already been synced.  (Bug#117)
 
 2008-12-30  Chong Yidong  <cyd@stupidchicken.com>
 
        * ralloc.c (r_alloc_reset_variable): New function.
 
        * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
-       record of what points where. (Bug#716)
+       record of what points where.  (Bug#716)
 
 2008-12-22  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * terminal.c (delete_terminal):
        * xterm.c (x_connection_closed):
        * xfns.c (Fx_hide_tip):
-       * w32fns.c (Fx_hide_tip): Call delete_frame instead of
-       Fdelete_frame.
+       * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
 
 2008-12-21  Jason Rumney  <jasonr@gnu.org>
 
 2008-12-20  Jason Rumney  <jasonr@gnu.org>
 
        * frame.c (Fmake_terminal_frame): Raise an error when called from
-       a graphical frame on Windows. (Bug#1325)
+       a graphical frame on Windows.  (Bug#1325)
 
 2008-12-20  Jan Djärv  <jan.h.d@swipnet.se>
 
 2008-12-20  Jason Rumney  <jasonr@gnu.org>
 
        * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
-       server name in UNC paths. (Bug#719)
+       server name in UNC paths.  (Bug#719)
 
        * coding.c (decode_coding): Clear chars_at_source flag when using
-       charbuf. (Bug#1035)
+       charbuf.  (Bug#1035)
 
 2008-12-19  Daniel Engeler  <engeler@gmail.com>
 
        (system_process_attributes): Rename from
        procfs_list_system_processes.
        (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
-       (procfs_get_total_memory):  Enclose in #ifdef GNU_LINUX.
+       (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
 
        * w32.c (list_system_processes): Rename from
        w32_list_system_processes.
        (xfont_list_family): Likewise.
        (xfont_open): Likewise.
 
-       * ftfont.c (ftfont_open): Genarate a multibyte string if given
+       * ftfont.c (ftfont_open): Generate a multibyte string if given
        names are utf-8.
 
-       * xftfont.c (xftfont_open): Genarate a multibyte string if given
+       * xftfont.c (xftfont_open): Generate a multibyte string if given
        names are utf-8.
 
 2008-12-18  Jan Djärv  <jan.h.d@swipnet.se>
 
 2008-12-13  Kenichi Handa  <handa@m17n.org>
 
-       * font.c (font_rescale_ratio): Moved from xfaces.c.  Argument
-       type changed.  Handle a font-spec too.
+       * font.c (font_rescale_ratio): Moved from xfaces.c.
+       Argument type changed.  Handle a font-spec too.
        (font_score): Check Vface_font_rescale_alist.
-       (font_open_entity): Likewise.
+       (font_open_entity): Likewise.  (Bug#1547)
 
        * xfaces.c (font_rescale_ratio): Moved to font.c.
 
 2008-12-11  Jason Rumney  <jasonr@gnu.org>
 
        * w32font.c (fill_in_logfont): Don't assume symbol script means
-       SYMBOL_CHARSET. (Bug#547)
+       SYMBOL_CHARSET.  (Bug#547)
 
        * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
-       size for surrogates. (Bug#1096, bug#872)
+       size for surrogates.  (Bug#1096, bug#872)
 
 2008-12-11  Juanma Barranquero  <lekktu@gmail.com>
 
 2008-11-26  Jason Rumney  <jasonr@gnu.org>
 
        * w32font.c (w32font_open_internal): Don't include external
-       leading in font height. (Bug#879)
+       leading in font height.  (Bug#879)
 
 2008-11-26  Glenn Morris  <rgm@gnu.org>
 
 
        * w32font.c (check_face_name): New function.
        (add_font_entity_to_list): Use it to filter out common substituted
-       fonts. (Bug#642)
+       fonts.  (Bug#642)
 
 2008-11-22  Martin Rudalics  <rudalics@gmx.at>
 
 
 2008-09-01  Kenichi Handa  <handa@m17n.org>
 
-       * ftfont.c (ftfont_spec_pattern): Don't create a charset of the
+       * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
        representative chars of the script is a vector.
-       (ftfont_list): Handle the case the representative chars of the
-       script is a vector.
+       (ftfont_list): Handle the case where the representative chars of
+       the script is a vector.
 
        * character.c (syms_of_character): Docstring of
        script-representative-chars fixed.
        (composition_update_it, composition_adjust_point): Extern them.
        (Fcomposition_get_gstring): EXFUN it.
 
-       * composite.c: Include window.h, frame.h, dispextern.h font.h.
+       * composite.c: Include window.h, frame.h, dispextern.h, font.h.
        (Vcomposition_function_table)
        (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
        (gstring_hash_table, gstring_work, gstring_work_headers):
        (next_element_from_string): Check if the character at the current
        position is composed by CHAR_COMPOSED_P.
        (next_element_from_buffer): Likewise.
-       (next_element_from_composition): Adjust for the change of struct
-       it.  Update it->cmp_it.
+       (next_element_from_composition): Adjust for the change of struct it.
+       Update it->cmp_it.
        (dump_glyph): Adjust for the change of struct glyph.
        (fill_composite_glyph_string): Adjust for the change of struct
        it and struct glyph.  Don't handle automatic composition here.
@@ -16903,7 +16993,7 @@ See ChangeLog.10 for earlier changes.
 ;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s"
 ;; End:
 
-    Copyright (C) 2007, 2008  Free Software Foundation, Inc.
+    Copyright (C) 2007, 2008, 2009  Free Software Foundation, Inc.
 
   This file is part of GNU Emacs.