Mercurial > emacs
comparison src/ChangeLog @ 89971:cce1c0ee76ee
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-36
Merge from emacs--cvs-trunk--0, emacs--gnus--5.10, gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Merge from emacs--gnus--5.10, gnus--rel--5.10
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-524
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-534
Update from CVS
* miles@gnu.org--gnu-2004/emacs--gnus--5.10--base-0
tag of miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-464
* miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-1
Import from CVS branch gnus-5_10-branch
* miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-2
Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0
* miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-3
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2004/emacs--gnus--5.10--patch-4
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-18
Update from CVS
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-19
Remove autoconf-generated files from archive
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-20
Update from CVS
| author | Miles Bader <miles@gnu.org> |
|---|---|
| date | Thu, 09 Sep 2004 09:36:36 +0000 |
| parents | 3219f94257bc 1a829dd4c629 |
| children | 566253900690 |
comparison
equal
deleted
inserted
replaced
| 89970:a849e5779b8c | 89971:cce1c0ee76ee |
|---|---|
| 1 2004-09-08 Richard M. Stallman <rms@gnu.org> | |
| 2 | |
| 3 * window.c (Fset_window_buffer): Doc fix. | |
| 4 | |
| 5 * xdisp.c (Fformat_mode_line): New arg BUFFER says which buffer to use. | |
| 6 | |
| 7 2004-09-08 Dan Nicolaescu <dann@ics.uci.edu> | |
| 8 | |
| 9 * minibuf.c (history_delete_duplicates): New variable. | |
| 10 (read_minibuf): Use it. | |
| 11 (syms_of_minibuf): Create the corresponding lisp variable. | |
| 12 | |
| 13 2004-09-08 Kim F. Storm <storm@cua.dk> | |
| 14 | |
| 15 * xdisp.c (set_cursor_from_row): Also look at 'cursor' property in | |
| 16 overlay just before point. | |
| 17 | |
| 18 2004-09-07 Luc Teirlinck <teirllm@auburn.edu> | |
| 19 | |
| 20 * buffer.h (struct buffer): Add auto_save_file_format field. | |
| 21 * buffer.c (reset_buffer, init_buffer_once): Handle | |
| 22 auto_save_file_format field. | |
| 23 (syms_of_buffer): Add DEFVAR_PER_BUFFER for | |
| 24 `buffer-auto-save-file-format'. | |
| 25 * fileio.c: Delete declaration for removed Vauto_save_file_format. | |
| 26 (build_annotations): Adapt to replacement of | |
| 27 `auto-save-file-format' with the new buffer-local variable | |
| 28 `buffer-auto-save-file-format'. | |
| 29 (syms_of_fileio): Delete DEFVAR_LISP for auto-save-file-format. | |
| 30 | |
| 31 2004-09-07 Jason Rumney <jasonr@gnu.org> | |
| 32 | |
| 33 * w32term.h (AppendMenuW_Proc): Move declaration from w32menu.c. | |
| 34 | |
| 35 * w32fns.c (w32_wnd_proc) [WM_MEASUREITEM, WM_DRAWITEM]: Handle | |
| 36 Unicode menu titles. | |
| 37 | |
| 38 2004-09-07 Kim F. Storm <storm@cua.dk> | |
| 39 | |
| 40 * xdisp.c (set_cursor_from_row): Fix last change. Only use 'cursor' | |
| 41 property from text property or overlay strings at point. | |
| 42 | |
| 43 2004-09-07 Stefan <monnier@iro.umontreal.ca> | |
| 44 | |
| 45 * xmenu.c (update_submenu_strings): YAILOM. | |
| 46 (set_frame_menubar): Make sure last_i is initialized. | |
| 47 | |
| 1 2004-09-03 Jason Rumney <jasonr@gnu.org> | 48 2004-09-03 Jason Rumney <jasonr@gnu.org> |
| 2 | 49 |
| 3 * w32menu.c (_widget_value): Added lname and lkey. | 50 * w32menu.c (_widget_value): Add lname and lkey. |
| 4 (digest_single_submenu): Set lname and lkey in widget_value | 51 (digest_single_submenu): Set lname and lkey in widget_value |
| 5 instead of name and key. | 52 instead of name and key. |
| 6 (update_submenu_strings): New function. | 53 (update_submenu_strings): New function. |
| 7 (set_frame_menubar): Remove call to inhibit_garbage_collection, | 54 (set_frame_menubar): Remove call to inhibit_garbage_collection, |
| 8 call update_submenu_strings. | 55 call update_submenu_strings. |
| 10 * w32menu.c (globals_of_w32menu): Check for Unicode API. | 57 * w32menu.c (globals_of_w32menu): Check for Unicode API. |
| 11 (digest_single_submenu, w32_menu_show): Encode menu strings as | 58 (digest_single_submenu, w32_menu_show): Encode menu strings as |
| 12 UTF-8 if Unicode API is available. | 59 UTF-8 if Unicode API is available. |
| 13 (utf8to16): New function. | 60 (utf8to16): New function. |
| 14 (add_menu_item): Use it when calling Unicode API. | 61 (add_menu_item): Use it when calling Unicode API. |
| 15 | 62 |
| 16 2004-09-03 Kim F. Storm <storm@cua.dk> | 63 2004-09-03 Kim F. Storm <storm@cua.dk> |
| 17 | 64 |
| 18 * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property | 65 * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property |
| 19 in overlay or text-property strings; set cursor on corresponding | 66 in overlay or text-property strings; set cursor on corresponding |
| 20 glyph rather than at end of the string. | 67 glyph rather than at end of the string. |
| 21 | 68 |
| 22 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 69 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 23 | 70 |
| 24 * macfns.c (x_real_positions): Save the current window port and | 71 * macfns.c (x_real_positions): Save the current window port and |
| 25 set a new one before obtaining the global coordinate. Use | 72 set a new one before obtaining the global coordinate. |
| 26 FRAME_MAC_WINDOW. | 73 Use FRAME_MAC_WINDOW. |
| 27 (x_set_name, x_set_title): Encode title to UTF8. Use | 74 (x_set_name, x_set_title): Encode title to UTF8. |
| 28 SetWindowTitleWithCFString. | 75 Use SetWindowTitleWithCFString. |
| 29 (Fx_server_version): Get correct OS version. | 76 (Fx_server_version): Get correct OS version. |
| 30 | 77 |
| 31 * macmenu.c (add_menu_item): Remove unused variable `i'. Don't | 78 * macmenu.c (add_menu_item): Remove unused variable `i'. |
| 32 let separator items destroy refence constants of other menu items. | 79 Don't let separator items destroy refence constants of other menu items. |
| 33 | 80 |
| 34 * macterm.c (x_update_end): Move SetPortWindowPort to inside | 81 * macterm.c (x_update_end): Move SetPortWindowPort to inside |
| 35 BLOCK_INPUT. | 82 BLOCK_INPUT. |
| 36 (x_set_offset): Use FRAME_MAC_WINDOW. | 83 (x_set_offset): Use FRAME_MAC_WINDOW. |
| 37 | 84 |
| 38 * xdisp.c (note_mouse_highlight): Set the mouse pointer shape to | 85 * xdisp.c (note_mouse_highlight): Set the mouse pointer shape to |
| 39 nontext_cursor if it is on a scroll bar. | 86 nontext_cursor if it is on a scroll bar. |
| 40 | 87 |
| 41 * s/darwin.h (LIBS_CARBON): New define to specify libraries for | 88 * s/darwin.h (LIBS_CARBON): New define to specify libraries for |
| 42 Carbon support. | 89 Carbon support. |
| 43 (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++. Use | 90 (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++. |
| 44 LIBS_CARBON. | 91 Use LIBS_CARBON. |
| 45 | 92 |
| 46 2004-09-02 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 93 2004-09-02 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 47 | 94 |
| 48 * xfns.c (x_set_name_internal): New function. Check if we shall call | 95 * xfns.c (x_set_name_internal): New function. Check if we shall call |
| 49 xfree before ENCODE_UTF_8. | 96 xfree before ENCODE_UTF_8. |
| 54 * w32fns.c (w32_load_font): If a BDF font is already loaded, do not | 101 * w32fns.c (w32_load_font): If a BDF font is already loaded, do not |
| 55 reload it. | 102 reload it. |
| 56 | 103 |
| 57 2004-08-30 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 104 2004-08-30 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 58 | 105 |
| 59 * macmenu.c (_widget_value): Added lname and lkey. | 106 * macmenu.c (_widget_value): Add lname and lkey. |
| 60 (single_submenu): Set lname and lkey in widget_value | 107 (single_submenu): Set lname and lkey in widget_value |
| 61 instead of name and key. | 108 instead of name and key. |
| 62 (update_submenu_strings): New function. | 109 (update_submenu_strings): New function. |
| 63 (set_frame_menubar): Remove call to inhibit_garbage_collection, | 110 (set_frame_menubar): Remove call to inhibit_garbage_collection, |
| 64 call update_submenu_strings. | 111 call update_submenu_strings. |
