aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS9
-rw-r--r--lisp/ChangeLog10
-rw-r--r--src/ChangeLog5
3 files changed, 24 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 13af1d49ede..704f1158b9b 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -280,6 +280,15 @@ SQL buffer.
280 280
281* Lisp Changes in Emacs 21.3 281* Lisp Changes in Emacs 21.3
282 282
283** The position after an invisible, intangible character
284is considered an unacceptable value for point;
285intangibility processing effectively treats the following character
286as part of the intangible region even if it is not itself intangible.
287
288Thus, point can go before an invisible, intangible region, but not
289after it. This prevents C-f and C-b from appearing to stand still on
290the screen.
291
283** Support for Mocklisp has been removed. 292** Support for Mocklisp has been removed.
284 293
285** The function insert-string is now obsolete. 294** The function insert-string is now obsolete.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c7c9c2f07c6..7b5430304ab 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12001-12-28 Richard M. Stallman <rms@gnu.org>
2
3 * simple.el (line-move-invisible): New subroutine.
4 (line-move-to-column): New subroutine--smarter about advancing over
5 invisible parts of a line, or lines, but only as long as hpos grows.
6 (line-move-finish): New subroutine: repeatedly processes desired
7 column, intangibility, and fields.
8 (line-move): Use those subroutines.
9 When moving lines downward, skip invisible text first rather than last.
10
12001-12-27 Richard M. Stallman <rms@gnu.org> 112001-12-27 Richard M. Stallman <rms@gnu.org>
2 12
3 * international/mule-diag.el (describe-char-after): 13 * international/mule-diag.el (describe-char-after):
diff --git a/src/ChangeLog b/src/ChangeLog
index 03fc611590f..7a69d4500fb 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12001-12-27 Richard M. Stallman <rms@gnu.org>
2
3 * intervals.c (set_point_both): The position after an invisible,
4 intangible character is not an acceptable stopping point.
5
12001-12-27 Ken Raeburn <raeburn@gnu.org> 62001-12-27 Ken Raeburn <raeburn@gnu.org>
2 7
3 * window.c (enlarge_window): In new preserve_before code, convert 8 * window.c (enlarge_window): In new preserve_before code, convert