diff options
| author | Kim F. Storm | 2006-09-05 22:52:17 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-09-05 22:52:17 +0000 |
| commit | 902f06edb1a49047be86f1483eb5d03a766d8f4c (patch) | |
| tree | 8710d9cc5f4575a1f7f8bfa571d59ad7b92709f5 | |
| parent | 7ca2645091d9620d4d62449929fa883cfd07c4d7 (diff) | |
| download | emacs-902f06edb1a49047be86f1483eb5d03a766d8f4c.tar.gz emacs-902f06edb1a49047be86f1483eb5d03a766d8f4c.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | src/ChangeLog | 21 |
2 files changed, 28 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 76aae28c886..88bd2379b9d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2006-09-06 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * simple.el (line-move-partial): New function to do vscrolling for | ||
| 4 | partially visible images / tall lines. Rewrite based on code | ||
| 5 | previously in line-move. Simplify backwards vscrolling. | ||
| 6 | (line-move): Use it. Simplify. | ||
| 7 | |||
| 1 | 2006-09-05 Kim F. Storm <storm@cua.dk> | 8 | 2006-09-05 Kim F. Storm <storm@cua.dk> |
| 2 | 9 | ||
| 3 | * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite. | 10 | * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite. |
diff --git a/src/ChangeLog b/src/ChangeLog index d5f766025be..5e39f084e9f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2006-09-06 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * xdisp.c (pos_visible_p): Remove exact_mode_line_heights_p arg; | ||
| 4 | so always calculate heights even when pos-visible-in-window-p is | ||
| 5 | called with partially = t. Don't overshoot last_visible_y in move_it_to. | ||
| 6 | Return row height and row number in new rowh and vpos args. | ||
| 7 | (cursor_row_fully_visible_p): First line is always "fully visible". | ||
| 8 | (try_window): Don't clear matrix if vscrolled. | ||
| 9 | |||
| 10 | * lisp.h (pos_visible_p): Update prototype. | ||
| 11 | |||
| 12 | * window.c (Fpos_visible_in_window_p): Adapt to new pos_visible_p. | ||
| 13 | Return row height and row number for partially visible rows. | ||
| 14 | Modify return value to a 2 element list for fully visible rows | ||
| 15 | and 6 for partially visible row. | ||
| 16 | (window_scroll_pixel_based): Use pos_visible_p directly instead of | ||
| 17 | Fpos_visible_in_window_p. Fix auto vscrolling for partially visible lines. | ||
| 18 | Only vscroll backwards if already vscrolled forwards. Unconditionally | ||
| 19 | vscroll forwards if PT is first (and only) line. Set new window start | ||
| 20 | instead of scrolling at start/end of tall line. | ||
| 21 | |||
| 1 | 2006-09-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 22 | 2006-09-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 23 | ||
| 3 | * macterm.c (install_window_handler, mac_handle_window_event) | 24 | * macterm.c (install_window_handler, mac_handle_window_event) |