aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-07-13 10:29:22 +0000
committerKim F. Storm2005-07-13 10:29:22 +0000
commit010b9a45b1afa80245d715cdc2e8793f2d0f9ed1 (patch)
treef2a0f0b8259fa8ce9da3f2e38c5b23b03e9b9c3e
parent539d7736831113c2f15c9a6864ba407125098a90 (diff)
downloademacs-010b9a45b1afa80245d715cdc2e8793f2d0f9ed1.tar.gz
emacs-010b9a45b1afa80245d715cdc2e8793f2d0f9ed1.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog6
-rw-r--r--src/ChangeLog18
2 files changed, 24 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 241f97c4437..696e20bdfe4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12005-07-13 Kim F. Storm <storm@cua.dk>
2
3 * simple.el (line-move-1): Always use vertical-motion to
4 do the last (or only) line move to ensure some movement.
5 Undo 2005-06-23 change--don't check for overlays.
6
12005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 72005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 8
3 * term/mac-win.el (ccl-encode-mac-roman-font) 9 * term/mac-win.el (ccl-encode-mac-roman-font)
diff --git a/src/ChangeLog b/src/ChangeLog
index 7387b17f23b..83df877fd7f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,23 @@
12005-07-13 Kim F. Storm <storm@cua.dk> 12005-07-13 Kim F. Storm <storm@cua.dk>
2 2
3 * xdisp.c (start_display): Don't reseat to next visible line start
4 if current start position is in a string or image.
5 (move_it_vertically_backward): Be sure to move out of strings and
6 images when moving it2 forward.
7 (move_it_by_lines): When moving forward, move to next buffer
8 position if we end up in a string or image. When moving backward,
9 count rows moved over when moving to start of current row in case
10 row starts in middle of a string or image. Also move further
11 backward if we end up in a string or image.
12 (try_cursor_movement): if overlay string spans multiple lines,
13 move backward to set cursor on start of an overlay string.
14 (cursor_row_p): Row is ok if cursor is at newline from string, but
15 string starts on this line (so we always position cursor at start
16 of string).
17
18 * indent.c (Fvertical_motion): If start position is on an image,
19 don't move back if we move too far (that's almost certain to happen).
20
3 * xdisp.c (cursor_row_fully_visible_p): Allow partially visible 21 * xdisp.c (cursor_row_fully_visible_p): Allow partially visible
4 row in minibuffer windows. 22 row in minibuffer windows.
5 (try_window): Don't check margins in minibuffer windows. 23 (try_window): Don't check margins in minibuffer windows.