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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/ChangeLog [lexbind]
Date: Wed, 15 Sep 2004 20:34:33 -0400

Index: emacs/src/ChangeLog
diff -c emacs/src/ChangeLog:1.2701.2.55 emacs/src/ChangeLog:1.2701.2.56
*** emacs/src/ChangeLog:1.2701.2.55     Sat Sep  4 09:28:14 2004
--- emacs/src/ChangeLog Thu Sep 16 00:12:22 2004
***************
*** 1,6 ****
  2004-09-03  Jason Rumney  <address@hidden>
  
!       * w32menu.c (_widget_value): Added lname and lkey.
        (digest_single_submenu): Set lname and lkey in widget_value
        instead of name and key.
        (update_submenu_strings): New function.
--- 1,53 ----
+ 2004-09-08  Richard M. Stallman  <address@hidden>
+ 
+       * window.c (Fset_window_buffer): Doc fix.
+ 
+       * xdisp.c (Fformat_mode_line): New arg BUFFER says which buffer to use.
+ 
+ 2004-09-08  Dan Nicolaescu  <address@hidden>
+ 
+       * minibuf.c (history_delete_duplicates): New variable.
+       (read_minibuf): Use it.
+       (syms_of_minibuf): Create the corresponding lisp variable.
+ 
+ 2004-09-08  Kim F. Storm  <address@hidden>
+ 
+       * xdisp.c (set_cursor_from_row): Also look at 'cursor' property in
+       overlay just before point.
+ 
+ 2004-09-07  Luc Teirlinck  <address@hidden>
+ 
+       * buffer.h (struct buffer): Add auto_save_file_format field.
+       * buffer.c (reset_buffer, init_buffer_once): Handle
+       auto_save_file_format field.
+       (syms_of_buffer): Add DEFVAR_PER_BUFFER for
+       `buffer-auto-save-file-format'.
+       * fileio.c: Delete declaration for removed Vauto_save_file_format.
+       (build_annotations): Adapt to replacement of
+       `auto-save-file-format' with the new buffer-local variable
+       `buffer-auto-save-file-format'.
+       (syms_of_fileio): Delete DEFVAR_LISP for auto-save-file-format.
+ 
+ 2004-09-07  Jason Rumney  <address@hidden>
+ 
+       * w32term.h (AppendMenuW_Proc): Move declaration from w32menu.c.
+ 
+       * w32fns.c (w32_wnd_proc) [WM_MEASUREITEM, WM_DRAWITEM]: Handle
+       Unicode menu titles.
+ 
+ 2004-09-07  Kim F. Storm  <address@hidden>
+ 
+       * xdisp.c (set_cursor_from_row): Fix last change.  Only use 'cursor'
+       property from text property or overlay strings at point.
+ 
+ 2004-09-07  Stefan  <address@hidden>
+ 
+       * xmenu.c (update_submenu_strings): YAILOM.
+       (set_frame_menubar): Make sure last_i is initialized.
+ 
  2004-09-03  Jason Rumney  <address@hidden>
  
!       * w32menu.c (_widget_value): Add lname and lkey.
        (digest_single_submenu): Set lname and lkey in widget_value
        instead of name and key.
        (update_submenu_strings): New function.
***************
*** 12,18 ****
        UTF-8 if Unicode API is available.
        (utf8to16): New function.
        (add_menu_item): Use it when calling Unicode API.
!       
  2004-09-03  Kim F. Storm  <address@hidden>
  
        * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property
--- 59,65 ----
        UTF-8 if Unicode API is available.
        (utf8to16): New function.
        (add_menu_item): Use it when calling Unicode API.
! 
  2004-09-03  Kim F. Storm  <address@hidden>
  
        * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property
***************
*** 22,35 ****
  2004-09-02  YAMAMOTO Mitsuharu  <address@hidden>
  
        * macfns.c (x_real_positions): Save the current window port and
!       set a new one before obtaining the global coordinate.  Use
!       FRAME_MAC_WINDOW.
!       (x_set_name, x_set_title): Encode title to UTF8.  Use
!       SetWindowTitleWithCFString.
        (Fx_server_version): Get correct OS version.
  
!       * macmenu.c (add_menu_item): Remove unused variable `i'.  Don't
!       let separator items destroy refence constants of other menu items.
  
        * macterm.c (x_update_end): Move SetPortWindowPort to inside
        BLOCK_INPUT.
--- 69,82 ----
  2004-09-02  YAMAMOTO Mitsuharu  <address@hidden>
  
        * macfns.c (x_real_positions): Save the current window port and
!       set a new one before obtaining the global coordinate.
!       Use FRAME_MAC_WINDOW.
!       (x_set_name, x_set_title): Encode title to UTF8.
!       Use SetWindowTitleWithCFString.
        (Fx_server_version): Get correct OS version.
  
!       * macmenu.c (add_menu_item): Remove unused variable `i'.
!       Don't let separator items destroy refence constants of other menu items.
  
        * macterm.c (x_update_end): Move SetPortWindowPort to inside
        BLOCK_INPUT.
***************
*** 40,47 ****
  
        * s/darwin.h (LIBS_CARBON): New define to specify libraries for
        Carbon support.
!       (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++.  Use
!       LIBS_CARBON.
  
  2004-09-02  Jan Dj,Ad(Brv  <address@hidden>
  
--- 87,94 ----
  
        * s/darwin.h (LIBS_CARBON): New define to specify libraries for
        Carbon support.
!       (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++.
!       Use LIBS_CARBON.
  
  2004-09-02  Jan Dj,Ad(Brv  <address@hidden>
  
***************
*** 56,62 ****
  
  2004-08-30  Jan Dj,Ad(Brv  <address@hidden>
  
!       * macmenu.c (_widget_value): Added lname and lkey.
        (single_submenu): Set lname and lkey in widget_value
        instead of name and key.
        (update_submenu_strings): New function.
--- 103,109 ----
  
  2004-08-30  Jan Dj,Ad(Brv  <address@hidden>
  
!       * macmenu.c (_widget_value): Add lname and lkey.
        (single_submenu): Set lname and lkey in widget_value
        instead of name and key.
        (update_submenu_strings): New function.




reply via email to

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