diff options
| author | Miles Bader | 2005-02-23 09:18:23 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-02-23 09:18:23 +0000 |
| commit | 1ff56495788f79262ed64540eebb81083e571369 (patch) | |
| tree | 32203951504b9857186ee711b64b1eb87bfa19af /src/ChangeLog | |
| parent | 8d46efcc0f2045a1e5a2739c55ba6a88fbf4bcfc (diff) | |
| parent | 82a8ad04d22cee5291657f2888c0899c235d3d00 (diff) | |
| download | emacs-1ff56495788f79262ed64540eebb81083e571369.tar.gz emacs-1ff56495788f79262ed64540eebb81083e571369.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-16
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-106
- miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-110
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-111
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-112
- miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-113
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-114
<no summary provided>
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-115
- miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-123
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-124
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-17
- miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-19
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-20
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-21
More work on moving images to etc/images
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-22
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-23
Fix errors with image-file installation
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-24
etc/Makefile.in (install): Put gnus-tut.txt in the right place.
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-25
etc/Makefile.in (install, uninstall): Fix installed image dirs.
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-26
etc/Makefile.in (install): Create $(etcdir)/images/gnus dir.
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-27
Update from CVS
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 77 |
1 files changed, 63 insertions, 14 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 089a3f3a694..d70ccc3d42d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,66 @@ | |||
| 1 | 2005-02-22 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * minibuf.c (Ftry_completion, Fall_completions): Allow both string | ||
| 4 | and symbol keys in alists and hash tables. | ||
| 5 | |||
| 6 | * xdisp.c (fast_find_position): Fix search for start of overlay. | ||
| 7 | |||
| 8 | 2005-02-21 Kim F. Storm <storm@cua.dk> | ||
| 9 | |||
| 10 | * window.c (window_scroll_pixel_based): When scrolling backwards, | ||
| 11 | handle partial visible line at end of window even when we hit PT. | ||
| 12 | |||
| 13 | 2005-02-21 Stefan <monnier@iro.umontreal.ca> | ||
| 14 | |||
| 15 | * keymap.h: Declare Fcurrent_active_maps, used in doc.c. | ||
| 16 | |||
| 17 | 2005-02-21 Kim F. Storm <storm@cua.dk> | ||
| 18 | |||
| 19 | * xdisp.c (move_it_vertically_backward): Eliminate two xasserts. | ||
| 20 | I think those asserts are bogus if buffer contains invisible text | ||
| 21 | or images. | ||
| 22 | |||
| 23 | 2005-02-21 David Kastrup <dak@gnu.org> | ||
| 24 | |||
| 25 | * gtkutil.c (xg_create_frame_widgets): UNBLOCK_INPUT on error. | ||
| 26 | |||
| 27 | 2005-02-20 Kim F. Storm <storm@cua.dk> | ||
| 28 | |||
| 29 | * xdisp.c (pos_visible_p): Be sure to move to the specified | ||
| 30 | position. Always get the full ascent / descent of the | ||
| 31 | corresponding row, to return reliable rtop and rbot values. | ||
| 32 | (back_to_previous_visible_line_start): Fix 2005-01-18 change. | ||
| 33 | Must look one character back, as back_to_previous_line_start | ||
| 34 | returns position after the newline. | ||
| 35 | (move_it_vertically_backward): Fix heuristic for when to move further | ||
| 36 | back in case line_height * 2/3 is larger than window height. | ||
| 37 | (cursor_row_fully_visible_p): Rename make_cursor_line_fully_visible_p | ||
| 38 | as it does not do anything anymore. Add arg current_matrix_p to | ||
| 39 | use current matrix rather than desired matrix when set. | ||
| 40 | (try_cursor_movement): Don't scroll to make cursor row fully | ||
| 41 | visible if cursor didn't move. This avoids unexpected recentering | ||
| 42 | in case of blinking cursor or accepting process output. | ||
| 43 | Use current matrix to check cursor row visibility. | ||
| 44 | (redisplay_window): Fix whether to recenter or move to top in case | ||
| 45 | cursor line is taller than window height. | ||
| 46 | (find_first_unchanged_at_end_row): Stop search if we reach a row | ||
| 47 | which not enabled (instead of abort). | ||
| 48 | |||
| 49 | 2005-02-18 Kim F. Storm <storm@cua.dk> | ||
| 50 | |||
| 51 | * xfaces.c (Finternal_set_lisp_face_attribute): Allow :color property | ||
| 52 | to be nil in a :box attribute value list; customize prints that | ||
| 53 | as lisp value when no box color is specified. | ||
| 54 | |||
| 55 | * .gdbinit (pitx, pit): Pretty print display iterator. | ||
| 56 | (prowx, prow): Pretty print glyph row. | ||
| 57 | (pcursorx, pcursor): Pretty print a window cursor. | ||
| 58 | (pwinx, pwin): Pretty print struct window. | ||
| 59 | |||
| 60 | 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 61 | |||
| 62 | * alloc.c (BLOCK_BYTES): Harmless typo. | ||
| 63 | |||
| 1 | 2005-02-17 Andreas Schwab <schwab@suse.de> | 64 | 2005-02-17 Andreas Schwab <schwab@suse.de> |
| 2 | 65 | ||
| 3 | * xfns.c (hack_wm_protocols): Use correct type for last parameter | 66 | * xfns.c (hack_wm_protocols): Use correct type for last parameter |
| @@ -811,13 +874,8 @@ | |||
| 811 | (install_window_handler) [TARGET_API_MAC_CARBON]: | 874 | (install_window_handler) [TARGET_API_MAC_CARBON]: |
| 812 | Register handlers for tracking/receiving drag-and-drop items. | 875 | Register handlers for tracking/receiving drag-and-drop items. |
| 813 | (do_ae_open_documents): Generate unibyte strings for filenames. | 876 | (do_ae_open_documents): Generate unibyte strings for filenames. |
| 814 | <<<<<<< ChangeLog | ||
| 815 | (mac_do_receive_drag) [TARGET_API_MAC_CARBON] : Likewise. | ||
| 816 | Reject only non-filename items. Set event modifiers and return value. | ||
| 817 | ======= | ||
| 818 | (mac_do_receive_drag) [TARGET_API_MAC_CARBON] : Likewise. | 877 | (mac_do_receive_drag) [TARGET_API_MAC_CARBON] : Likewise. |
| 819 | Reject only non-filename items. Set event modifiers, and return value. | 878 | Reject only non-filename items. Set event modifiers, and return value. |
| 820 | >>>>>>> 1.4187 | ||
| 821 | 879 | ||
| 822 | 2004-12-28 Dan Nicolaescu <dann@ics.uci.edu> | 880 | 2004-12-28 Dan Nicolaescu <dann@ics.uci.edu> |
| 823 | 881 | ||
| @@ -927,12 +985,7 @@ | |||
| 927 | (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Reposition window | 985 | (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Reposition window |
| 928 | if the position is neither user-specified nor program-specified. | 986 | if the position is neither user-specified nor program-specified. |
| 929 | (x_free_frame_resources): Free size_hints. | 987 | (x_free_frame_resources): Free size_hints. |
| 930 | <<<<<<< ChangeLog | ||
| 931 | (x_wm_set_size_hint): Allocate size_hints if needed. | ||
| 932 | Set size_hints. | ||
| 933 | ======= | ||
| 934 | (x_wm_set_size_hint): Allocate size_hints if needed. Set size_hints. | 988 | (x_wm_set_size_hint): Allocate size_hints if needed. Set size_hints. |
| 935 | >>>>>>> 1.4187 | ||
| 936 | (mac_clear_font_name_table): New function. | 989 | (mac_clear_font_name_table): New function. |
| 937 | (mac_do_list_fonts): Initialize font_name_table if needed. | 990 | (mac_do_list_fonts): Initialize font_name_table if needed. |
| 938 | (x_list_fonts): Don't initialize font_name_table. Add BLOCK_INPUT | 991 | (x_list_fonts): Don't initialize font_name_table. Add BLOCK_INPUT |
| @@ -984,11 +1037,7 @@ | |||
| 984 | 1037 | ||
| 985 | 2004-12-27 Richard M. Stallman <rms@gnu.org> | 1038 | 2004-12-27 Richard M. Stallman <rms@gnu.org> |
| 986 | 1039 | ||
| 987 | <<<<<<< ChangeLog | ||
| 988 | * buffer.c (Fbuffer_disable_undo): Delete (moved to simple.el). | ||
| 989 | ======= | ||
| 990 | * buffer.c (Fbuffer_disable_undo): Delete (move to simple.el). | 1040 | * buffer.c (Fbuffer_disable_undo): Delete (move to simple.el). |
| 991 | >>>>>>> 1.4187 | ||
| 992 | (syms_of_buffer): Don't defsubr it. | 1041 | (syms_of_buffer): Don't defsubr it. |
| 993 | 1042 | ||
| 994 | * process.c (list_processes_1): Set undo_list instead | 1043 | * process.c (list_processes_1): Set undo_list instead |