diff options
| author | Miles Bader | 2006-06-17 20:57:37 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-06-17 20:57:37 +0000 |
| commit | 10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217 (patch) | |
| tree | 78d2db4ab91026e7d5373086d022a2bce083200b /src/ChangeLog | |
| parent | 2090e2a3897bd0e36fd0e8ba13d861668a0a887f (diff) | |
| parent | f362b76002bfd0f43af76a7772a808c042302f07 (diff) | |
| download | emacs-10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217.tar.gz emacs-10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 300-313)
- Update from CVS
- Update from CVS: lispref/display.texi (Forcing Redisplay): Fix typo.
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 105-106)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-74
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d0ad63de10d..c4c798e6f77 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,126 @@ | |||
| 1 | 2006-06-17 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * dispnew.c (update_frame): Check for input pending on entry. | ||
| 4 | (update_window, update_frame_1): Break loop if input is detected. | ||
| 5 | |||
| 6 | 2006-06-16 Francis Litterio <flitterio@gmail.com> | ||
| 7 | |||
| 8 | * xterm.c (x_check_expected_move, handle_one_xevent) | ||
| 9 | (x_set_offset, x_check_fullscreen): Extensive changes to make | ||
| 10 | frame positioning deterministic under X. | ||
| 11 | |||
| 12 | * xterm.h (x_output): Added members left_before_move and | ||
| 13 | top_before_move. Removed members expected_left and expected_top. | ||
| 14 | |||
| 15 | 2006-06-16 Kim F. Storm <storm@cua.dk> | ||
| 16 | |||
| 17 | * dispextern.h (struct it): Add union to iterator stack to save | ||
| 18 | image, composition, and stretch specific paramters. | ||
| 19 | |||
| 20 | * xdisp.c (next_overlay_string): Fix assert. | ||
| 21 | (push_it, pop_it): Handle composition and stretch specific values. | ||
| 22 | Only handle it->slice in image (for now). | ||
| 23 | (back_to_previous_visible_line_start): Continue search if newline is | ||
| 24 | part of a compisition. Simplify. | ||
| 25 | (reseat_1): Set it->object to buffer. | ||
| 26 | (set_iterator_to_next): Set it->object to string or buffer, when | ||
| 27 | setting it->method to GET_FROM_STRING or GET_FROM_BUFFER. | ||
| 28 | (next_element_from_composition): Set it->object to buffer if not | ||
| 29 | from string. | ||
| 30 | (set_cursor_from_row): Only save start of string if not already | ||
| 31 | done to handle multiple strings in a row. | ||
| 32 | |||
| 33 | * .gdbinit (pitx): Show composition parameters. | ||
| 34 | (pgx, pg): New commands to print a glyph structure. | ||
| 35 | (pgi, pgn): New commands to print specific/next glyph. | ||
| 36 | (pgrowx, pgrow): New commands to print all glyphs in a row. | ||
| 37 | |||
| 38 | 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 39 | |||
| 40 | * macfns.c (Fx_display_mm_height, Fx_display_mm_width) | ||
| 41 | [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Use CGDisplayScreenSize. | ||
| 42 | |||
| 43 | * macterm.c (do_app_resume, do_app_suspend): Remove functions. | ||
| 44 | (mac_tsm_resume, mac_tsm_suspend) [USE_MAC_TSM]: New functions. | ||
| 45 | (mac_handle_window_event, XTread_socket) [USE_MAC_TSM]: Use them. | ||
| 46 | (Vmac_ts_script_language_on_focus) [USE_MAC_TSM]: New variable. | ||
| 47 | (syms_of_macterm) [USE_MAC_TSM]: Defvar it. | ||
| 48 | (saved_ts_language, saved_ts_component) [USE_MAC_TSM]: New variables. | ||
| 49 | (mac_initialize_display_info) [MAC_OSX]: Use Quartz Display | ||
| 50 | Services functions to get size of main display in pixels. | ||
| 51 | |||
| 52 | 2006-06-14 Chong Yidong <cyd@stupidchicken.com> | ||
| 53 | |||
| 54 | * xdisp.c (back_to_previous_visible_line_start): Reset | ||
| 55 | it->continuation_lines_width. | ||
| 56 | |||
| 57 | 2006-06-14 Richard Stallman <rms@gnu.org> | ||
| 58 | |||
| 59 | * eval.c (Fdefconst): Mark variable as risky. | ||
| 60 | |||
| 61 | * callproc.c (Fcall_process): Doc fix. | ||
| 62 | |||
| 63 | * window.c (adjust_window_trailing_edge): Don't break out of the loop | ||
| 64 | because there's no next window, if there are parallel windows. | ||
| 65 | Do break out when WINDOW is nil. | ||
| 66 | |||
| 67 | 2006-06-14 Kim F. Storm <storm@cua.dk> | ||
| 68 | |||
| 69 | * dispextern.h (IT_STACK_SIZE): New macro specifying size of | ||
| 70 | iterator stack (instead of hardcoded number). Increase from 2 to | ||
| 71 | 4 to make room for propertized overlay strings before and after a | ||
| 72 | display string, image or composition. | ||
| 73 | (struct it): Add image_id and method members to iterator stack. | ||
| 74 | |||
| 75 | * xdisp.c (init_from_display_pos): Don't set it->method and | ||
| 76 | overlay_string_index after pop_it. Add asserts. | ||
| 77 | (handle_stop): Look for overlay strings around a display string, | ||
| 78 | image, or composition. Handle properties on those strings. | ||
| 79 | (next_overlay_string): Don't set string, pos or method after pop_it. | ||
| 80 | (get_overlay_strings_1): Split from get_overlay_strings; don't | ||
| 81 | modify it if no overlay strings are found. | ||
| 82 | (get_overlay_strings): Use get_overlay_strings_1. Always set | ||
| 83 | it->string and it->method. | ||
| 84 | (push_it): Push it->image_id and it->method. Push it->object | ||
| 85 | instead of it->string if method is GET_FROM_IMAGE. | ||
| 86 | (pop_it): Pop it->image_id and it->method. Ppo it->object | ||
| 87 | instead of it->string if method is GET_FROM_IMAGE. | ||
| 88 | Reset it->current.string_pos if popped it->string is nil. | ||
| 89 | (reseat_1): Remove comment dated 19 May 2003. It expressed doubt | ||
| 90 | whether a given change was correct; but the change is correct. | ||
| 91 | Clear it->string_from_display_prop_p. | ||
| 92 | (set_iterator_to_next): Rely on it->method and it->image_id from | ||
| 93 | iterator stack, instead of setting them explicitly after pop_it. | ||
| 94 | |||
| 95 | * dispnew.c (sit_for): Undo 2006-06-01 change. Instead, a | ||
| 96 | negative time forces redisplay even when input is available. | ||
| 97 | (Fsit_for): Doc fix. | ||
| 98 | |||
| 99 | 2006-06-13 Kim F. Storm <storm@cua.dk> | ||
| 100 | |||
| 101 | * dispnew.c: Modify preemptive redisplay to be based on periodic | ||
| 102 | checks for input. | ||
| 103 | (PERIODIC_PREEMPTION_CHECKING): Define to 1 iff EMACS_HAS_USECS. | ||
| 104 | (Vredisplay_preemption_period): New variable. | ||
| 105 | (syms_of_display): DEFVAR_LISP and initialize it. | ||
| 106 | (preemption_period, preemption_next_check): New variables. | ||
| 107 | (update_frame, update_single_window): Initialize them based on | ||
| 108 | Vredisplay_preemption_period if !force_p. | ||
| 109 | (update_window, update_frame_1): Use them to determine when to | ||
| 110 | check for input. | ||
| 111 | |||
| 112 | 2006-06-03 Aidan Kehoe <kehoea@parhasard.net> | ||
| 113 | |||
| 114 | * lread.c (read_escape): Provide a Unicode character escape | ||
| 115 | syntax; \u followed by exactly four or \U followed by exactly | ||
| 116 | eight hex digits in a comment or string is read as a Unicode | ||
| 117 | character with that code point. | ||
| 118 | |||
| 119 | 2006-06-09 Eli Zaretskii <eliz@gnu.org> | ||
| 120 | |||
| 121 | * window.c (window_scroll_pixel_based): Signal "Beginning of | ||
| 122 | buffer" when scroll-down at the beginning of an empty buffer. | ||
| 123 | |||
| 1 | 2006-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 124 | 2006-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 125 | ||
| 3 | * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event): Exclude | 126 | * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event): Exclude |