]> code.delx.au - gnu-emacs/blobdiff - src/ChangeLog
New icon.
[gnu-emacs] / src / ChangeLog
index 9dd1358ac3f654edb603e99ed6c707018611f3f3..ad01ac41f1a171941dec510cba3efbf39273443f 100644 (file)
@@ -1,3 +1,136 @@
+2008-03-02  Kentaro Ohkouchi  <nanasess@fsm.ne.jp>
+
+       * gnu.h: New icon.
+
+2008-03-02  Kenichi Handa  <handa@m17n.org>
+
+       * coding.c (decode_coding_utf_8): When eol-type of CODING is
+       `dos', don't decode '\r' if that is the last in the source.
+       (decode_coding_utf_16, decode_coding_emacs_mule)
+       (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
+       (decode_coding_raw_text, decode_coding_charset): Likewise.
+       (produce_chars): Don't decode EOL here.  Use EMACS_INT.
+
+2008-03-01  Jason Rumney  <jasonr@gnu.org>
+
+       * w32font.c (w32font_full_name): Report point size for scalable fonts.
+
+2008-03-01  Kim F. Storm  <storm@cua.dk>
+
+       * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
+
+2008-03-01  Jason Rumney  <jasonr@gnu.org>
+
+       * w32font.c (w32font_full_name): New function.
+       (w32font_open_internal): Use it.
+
+2008-03-01  Kim F. Storm  <storm@cua.dk>
+
+       * dispnew.c (line_draw_cost): Fix invalid glyph check.
+
+2008-03-01  Jason Rumney  <jasonr@gnu.org>
+
+       * font.c (font_unparse_fcname): Increase len when style is a symbol.
+
+2008-03-01  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+
+       * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
+       xg_frame_resized when the event is for the edit widget.
+
+       * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
+
+       * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
+       set_char_size.
+       (xg_frame_resized): Renamed from xg_resize_widgets.  Remove all
+       operations on widgets here.  Just set frame size if needed.
+       (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
+       (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
+       (x_wm_set_size_hint): Set size hints on the edit widget only, not
+       the whole frame.
+       (xg_create_tool_bar): Move attachement of the tool bar to
+       xg_pack_tool_bar.  Do not attach the tool bar if there are no items.
+       (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
+
+2008-03-01  Jason Rumney  <jasonr@gnu.org>
+
+       * w32fns.c (w32_msg_pump): Disable debug code.
+
+2008-03-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
+       * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
+
+2008-02-29  Chong Yidong  <cyd@stupidchicken.com>
+
+       * xdisp.c (next_overlay_string): Don't set
+       overlay_strings_at_end_processed_p if we're currently reading from
+       a display string.
+
+2008-02-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * xdisp.c (get_overlay_strings_1): Fix typo.
+
+2008-02-29  Chong Yidong  <cyd@stupidchicken.com>
+
+       * xdisp.c (get_overlay_strings_1): Add missing argument type.
+
+2008-02-28  Kenichi Handa  <handa@ni.aist.go.jp>
+
+       * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
+
+       * xdisp.c (display_mode_element): Cancel the previous change.
+       (decode_mode_spec): Likewise.
+       (handle_auto_composed_prop): Don't make composition if it->string
+       is a string.
+
+2008-02-27  Kim F. Storm  <storm@cua.dk>
+
+       * lisp.h (GLYPH): Change type from int to struct with separate char
+       and face_id members.
+       (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
+       (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
+       (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
+       (GLYPH_CHAR, GLYPH_FACE): ... these.  Change users.
+       (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove.  Rewrite users to use ...
+       (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
+       (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
+       (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
+       handle new Lisp glyph code encoding, either an integer or a cons.
+
+       * disptab.h (GLYPH_SIMPLE_P): Rewrite.
+       (GLYPH_ALIAS): Delete.
+       (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
+       (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
+       (GLYPH_FROM_CHAR): Replace macro by ...
+       (SET_GLYPH_FROM_CHAR): ... this macro.  Change users.
+
+       * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
+       (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
+       (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro.  Change users.
+       (GLYPH_INVALID_P): New macro.
+       (spec_glyph_lookup_face): Update prototype.
+
+       * dispnew.c (line_draw_cost): Adapt to new glyph type.
+       (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
+       new glyph code encoding.
+       (spec_glyph_lookup_face): No return value; update passed glyph instead.
+       (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
+
+       * xdisp.c (get_next_display_element, next_element_from_display_vector):
+       Adapt to new glyph type and new glyph code encoding.
+
+       * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
+
+       * indent.c (current_column, current_column_1, Fmove_to_column)
+       (compute_motion): Adapt to new glyph code encoding.
+
+       * msdos.c (IT_write_glyphs): Adapt to new glyph type.
+
+2008-02-27  Chong Yidong  <cyd@stupidchicken.com>
+
+       * process.c (wait_reading_process_output): Check for window
+       changes caused by timers.
+       Suggested by Johan Bockg\e,Ae\e(Brd.
+
 2008-02-27  Glenn Morris  <rgm@gnu.org>
 
        * emacs.c (USAGE1): Add `--disable-font-backend'.
        (Fenlarge_window, Fshrink_window, Fset_window_configuration):
        Use run_window_configuration_change_hook.
 
+2008-02-25  Kenichi Handa  <handa@ni.aist.go.jp>
+
+       * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
+       1-pixel width.
+
 2008-02-25  Kenichi Handa  <handa@ni.aist.go.jp>
 
        * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.