diff options
| author | Richard M. Stallman | 2001-12-28 05:19:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-28 05:19:24 +0000 |
| commit | 4e02881b8064ff871dacef3c0e88ea1017a172de (patch) | |
| tree | f937f68fefc3adffd64447e69732aa520f69c160 | |
| parent | af894fc98aaec826059cf8e489070862376a4749 (diff) | |
| download | emacs-4e02881b8064ff871dacef3c0e88ea1017a172de.tar.gz emacs-4e02881b8064ff871dacef3c0e88ea1017a172de.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 9 | ||||
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
3 files changed, 24 insertions, 0 deletions
| @@ -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 | ||
| 284 | is considered an unacceptable value for point; | ||
| 285 | intangibility processing effectively treats the following character | ||
| 286 | as part of the intangible region even if it is not itself intangible. | ||
| 287 | |||
| 288 | Thus, point can go before an invisible, intangible region, but not | ||
| 289 | after it. This prevents C-f and C-b from appearing to stand still on | ||
| 290 | the 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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-12-27 Richard M. Stallman <rms@gnu.org> | 11 | 2001-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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-12-27 Ken Raeburn <raeburn@gnu.org> | 6 | 2001-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 |