emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/ChangeLog


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/src/ChangeLog
Date: Fri, 24 May 2002 11:32:31 -0400

Index: emacs/src/ChangeLog
diff -c emacs/src/ChangeLog:1.2675 emacs/src/ChangeLog:1.2676
*** emacs/src/ChangeLog:1.2675  Wed May 22 17:18:25 2002
--- emacs/src/ChangeLog Thu May 23 13:22:24 2002
***************
*** 1,3 ****
--- 1,9 ----
+ 2002-05-23  Stefan Monnier  <address@hidden>
+ 
+       * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
+       (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
+       (Vwrite_region_annotate_functions): Docstring fix.
+ 
  2002-05-23  Kim F. Storm  <address@hidden>
  
        * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
***************
*** 14,20 ****
        Use modified enumfont_t struct.
  
        * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
!  
        * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
        Handle the `hbar' cursor type.
        (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
--- 20,26 ----
        Use modified enumfont_t struct.
  
        * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
! 
        * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
        Handle the `hbar' cursor type.
        (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
***************
*** 60,67 ****
        (code_convert_string1, code_convert_string_norecord)
        (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
        XSYMBOL and name field.
!       * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding) 
!       (Fmake_variable_buffer_local, Fmake_local_variable) 
        (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
        of XSYMBOL and name field.
        * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
--- 66,73 ----
        (code_convert_string1, code_convert_string_norecord)
        (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
        XSYMBOL and name field.
!       * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
!       (Fmake_variable_buffer_local, Fmake_local_variable)
        (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
        of XSYMBOL and name field.
        * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
***************
*** 70,84 ****
        instead of XSYMBOL and name field.
        * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
        XSYMBOL and name field.
!       * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash): Use
!       SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
        * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
        instead of XSYMBOL and name field.
!       * keyboard.c (echo_char, record_char, parse_modifiers_uncached) 
!       (parse_modifiers, apply_modifiers, Fevent_convert_list) 
!       (parse_solitary_modifier, Fexecute_extended_command): Use
!       SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
!       * keymap.c (silly_event_symbol_error, Fsingle_key_description) 
        (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
        of XSYMBOL and name field.
        (describe_command, describe_translation): Use SYMBOL_NAME and
--- 76,90 ----
        instead of XSYMBOL and name field.
        * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
        XSYMBOL and name field.
!       * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
!       Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
        * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
        instead of XSYMBOL and name field.
!       * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
!       (parse_modifiers, apply_modifiers, Fevent_convert_list)
!       (parse_solitary_modifier, Fexecute_extended_command):
!       Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
!       * keymap.c (silly_event_symbol_error, Fsingle_key_description)
        (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
        of XSYMBOL and name field.
        (describe_command, describe_translation): Use SYMBOL_NAME and
***************
*** 101,116 ****
        XSTRING instead of XSYMBOL and name field.
        * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
        of XSYMBOL and name field.
!       * xselect.c (symbol_to_x_atom, x_get_foreign_selection): Use
!       SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
  
  2002-05-19  Ken Raeburn  <address@hidden>
  
        * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
        and XCDR real rvalues in most configurations.
  
!       * buffer.c (fix_overlays_in_range, fix_overlays_before): Don't
!       take the address of the cdr part of a cons cell; instead, track
        the parent cell and call XSETCDR, or set the variable for the head
        of the list if we haven't started down the list yet.
  
--- 107,122 ----
        XSTRING instead of XSYMBOL and name field.
        * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
        of XSYMBOL and name field.
!       * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
!       Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
  
  2002-05-19  Ken Raeburn  <address@hidden>
  
        * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
        and XCDR real rvalues in most configurations.
  
!       * buffer.c (fix_overlays_in_range, fix_overlays_before):
!       Don't take the address of the cdr part of a cons cell; instead, track
        the parent cell and call XSETCDR, or set the variable for the head
        of the list if we haven't started down the list yet.
  
***************
*** 133,140 ****
  
  2002-05-16  Juanma Barranquero  <address@hidden>
  
!       * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix
!       typo.
  
  2002-05-15  Stefan Monnier  <address@hidden>
  
--- 139,145 ----
  
  2002-05-16  Juanma Barranquero  <address@hidden>
  
!       * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
  
  2002-05-15  Stefan Monnier  <address@hidden>
  
***************
*** 205,217 ****
  
  2002-05-09  Kim F. Storm  <address@hidden>
  
!       * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1): 
        Enlarge cursor rectangle drawn around image with non-zero relief.
  
!       * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1): 
        Enlarge cursor rectangle drawn around image with non-zero relief.
  
!       * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1): 
        Enlarge cursor rectangle drawn around image with non-zero relief.
  
  2002-05-07  Eli Zaretskii  <address@hidden>
--- 210,222 ----
  
  2002-05-09  Kim F. Storm  <address@hidden>
  
!       * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
        Enlarge cursor rectangle drawn around image with non-zero relief.
  
!       * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
        Enlarge cursor rectangle drawn around image with non-zero relief.
  
!       * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
        Enlarge cursor rectangle drawn around image with non-zero relief.
  
  2002-05-07  Eli Zaretskii  <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]