diff options
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 72277cc79d7..8cda28228c4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,8 +1,18 @@ | |||
| 1 | 2000-10-25 Miles Bader <miles@lsi.nec.co.jp> | 1 | 2000-10-25 Miles Bader <miles@lsi.nec.co.jp> |
| 2 | 2 | ||
| 3 | * wid-edit.el (widget-field-at): New function. | ||
| 4 | (widget-at, widget-field-activate): Use it. | ||
| 5 | (widget-tabable-at): Use `widget-at'. | ||
| 6 | (widget-specify-field): If the terminating character of the widget | ||
| 7 | field (which is read-only) is a newline, put it into a special | ||
| 8 | `boundary' field so that C-n/C-p act more naturally. | ||
| 9 | (widget-field-end): Also don't subtract one if a special | ||
| 10 | `boundary' field has been added after the widget field. | ||
| 11 | |||
| 3 | * comint.el (comint-output-filter, comint-send-input): Don't | 12 | * comint.el (comint-output-filter, comint-send-input): Don't |
| 4 | bother adding stickiness fields to overlays to fool the field | 13 | bother adding stickiness fields to overlays to fool the field |
| 5 | code, since it should notice the overlay insertion-types now. | 14 | code, since it should notice the overlay insertion-types now. |
| 15 | |||
| 6 | * wid-edit.el (widget-beginning-of-line, widget-end-of-line): | 16 | * wid-edit.el (widget-beginning-of-line, widget-end-of-line): |
| 7 | Replace with aliases of the normal emacs b-o-l/e-o-l functions. | 17 | Replace with aliases of the normal emacs b-o-l/e-o-l functions. |
| 8 | (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e. | 18 | (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e. |
diff --git a/src/ChangeLog b/src/ChangeLog index d3c6a2f2765..eeaea2195fb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2000-10-25 Miles Bader <miles@lsi.nec.co.jp> | 1 | 2000-10-25 Miles Bader <miles@lsi.nec.co.jp> |
| 2 | 2 | ||
| 3 | * buffer.c (overlays_at): Only let CHANGE_REQ inhibit an | ||
| 4 | assignment of startpos to prev when startpos == pos. | ||
| 5 | |||
| 3 | * editfns.c (find_field): Set the field stickiness correctly from | 6 | * editfns.c (find_field): Set the field stickiness correctly from |
| 4 | overlay fields. Use renamed `text_property_stickiness'. | 7 | overlay fields. Use renamed `text_property_stickiness'. |
| 5 | (text_property_stickiness): Renamed from `char_property_stickiness'. | 8 | (text_property_stickiness): Renamed from `char_property_stickiness'. |