diff options
| author | Miles Bader | 2007-10-09 08:52:57 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-10-09 08:52:57 +0000 |
| commit | 1af74d06e5bdafad9d629d2ed729c5d743cfaf0f (patch) | |
| tree | 0360965ec0ad2736ffee01cce4f040c6b0a99133 /src/ChangeLog | |
| parent | eceb3266a1f66a0034954aa82efbb20a5be959f8 (diff) | |
| parent | 4b70e299ef66906fd285198003c72a1439d1f252 (diff) | |
| download | emacs-1af74d06e5bdafad9d629d2ed729c5d743cfaf0f.tar.gz emacs-1af74d06e5bdafad9d629d2ed729c5d743cfaf0f.zip | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-875
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6374b29aedc..4160a53e9d7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,85 @@ | |||
| 1 | 2007-10-08 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * keyboard.c (kbd_buffer_get_event): Break loop waiting for input | ||
| 4 | when there's an unread command event. | ||
| 5 | |||
| 6 | * frame.c (focus_follows_mouse): Moved here from frame.el to allow | ||
| 7 | window autoselection act appropriately when leaving selected frame. | ||
| 8 | (syms_of_frame): Initialize focus_follows_mouse. | ||
| 9 | * frame.h (focus_follows_mouse): Extern it. | ||
| 10 | * macterm.c (XTread_socket): When focus_follows_mouse is nil | ||
| 11 | make SELECT_WINDOW_EVENT only if we don't leave the selected | ||
| 12 | frame. | ||
| 13 | * msdos.c (dos_rawgetc): Likewise. | ||
| 14 | * w32term.c (w32_read_socket): Likewise. | ||
| 15 | * xterm.c (handle_one_xevent): Likewise. | ||
| 16 | * xdisp.c (syms_of_xdisp): In doc-string of | ||
| 17 | mouse-autoselect-window mention focus-follows-mouse. | ||
| 18 | |||
| 19 | 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 20 | |||
| 21 | * macterm.c (mac_load_query_font): Fix missing return value. | ||
| 22 | [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap): | ||
| 23 | Add BLOCK_INPUT. | ||
| 24 | |||
| 25 | 2007-10-08 Richard Stallman <rms@gnu.org> | ||
| 26 | |||
| 27 | * xdisp.c (get_window_cursor_type): Implement documented behavior | ||
| 28 | for cursor-in-non-selected-windows = t. | ||
| 29 | |||
| 30 | 2007-10-08 Jason Rumney <jasonr@gnu.org> | ||
| 31 | |||
| 32 | * w32.c (w32_get_resource): Always close registry keys. | ||
| 33 | |||
| 34 | 2007-10-08 Jason Rumney <jasonr@gnu.org> | ||
| 35 | |||
| 36 | * makefile.w32-in (LIBS): Add COMCTL32. | ||
| 37 | |||
| 38 | * w32fns.c (globals_of_w32fns): Init common controls. | ||
| 39 | |||
| 40 | 2007-10-08 Richard Stallman <rms@gnu.org> | ||
| 41 | |||
| 42 | * image.c (our_memory_buffer): Renamed from omfib_buffer. | ||
| 43 | |||
| 44 | 2007-10-08 Richard Stallman <rms@gnu.org> | ||
| 45 | |||
| 46 | * buffer.c (Foverlays_at): Doc fix. | ||
| 47 | |||
| 48 | 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 49 | |||
| 50 | * fns.c (Fplist_put): Preserve uneven tail data. | ||
| 51 | |||
| 52 | 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change) | ||
| 53 | |||
| 54 | * termhooks.h (enum event_kind): Remove trailing comma. | ||
| 55 | |||
| 56 | * frame.h (enum): Remove trailing comma. | ||
| 57 | |||
| 58 | 2007-10-08 Dhuvra Krishnamurthy <dhuvrakm@gmail.com> (tiny change) | ||
| 59 | |||
| 60 | * w32proc.c (delete_child): Don't terminate threads of zombies. | ||
| 61 | |||
| 62 | 2007-10-08 Martin Rudalics <rudalics@gmx.at> | ||
| 63 | |||
| 64 | * keyboard.h (struct kboard): New elt Vlast_repeatable_command. | ||
| 65 | |||
| 66 | * keyboard.c (syms_of_keyboard): Set up new Lisp variable | ||
| 67 | last-repeatable-command. | ||
| 68 | (init_kboard): Initialize Vlast_repeatable_command. | ||
| 69 | (command_loop_1): Set it to real_this_command unless that was | ||
| 70 | bound to an input event. | ||
| 71 | (mark_kboards): Mark it. | ||
| 72 | |||
| 73 | 2007-10-08 Richard Stallman <rms@gnu.org> | ||
| 74 | |||
| 75 | * eval.c (condition-case): Doc fix. | ||
| 76 | |||
| 77 | 2007-10-08 Masatake YAMATO <jet@gyve.org> | ||
| 78 | |||
| 79 | * xfaces.c (tty_supports_face_attributes_p): Fix code | ||
| 80 | for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code | ||
| 81 | was copied and not edited. | ||
| 82 | |||
| 1 | 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca> | 83 | 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 84 | ||
| 3 | Add new `input-decode-map' keymap and use it for temrinal | 85 | Add new `input-decode-map' keymap and use it for temrinal |
| @@ -1622,6 +1704,10 @@ | |||
| 1622 | customizable variable. Rather explicitly check whether the | 1704 | customizable variable. Rather explicitly check whether the |
| 1623 | height of the window that shall be splitted is at least as large | 1705 | height of the window that shall be splitted is at least as large |
| 1624 | as split_height_threshold. | 1706 | as split_height_threshold. |
| 1707 | (Fwindow_full_width_p): New defun. | ||
| 1708 | (syms_of_window): Defsubr it. | ||
| 1709 | |||
| 1710 | * window.h: Add EXFUN for Fwindow_full_width_p. | ||
| 1625 | 1711 | ||
| 1626 | 2007-07-14 Jason Rumney <jasonr@gnu.org> | 1712 | 2007-07-14 Jason Rumney <jasonr@gnu.org> |
| 1627 | 1713 | ||