diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dd9d9cecb26..9c2d4cb2348 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,24 @@ | |||
| 1 | 2003-07-09 Stefan Monnier <monnier@cs.yale.edu> | 1 | 2003-07-09 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 2 | ||
| 3 | * lisp.h (VALBITS): Define in terms of GCTYPEBITS. | ||
| 4 | (struct interval): Move to intervals.h. | ||
| 5 | (struct Lisp_Marker): Use EMACS_INT for position info. | ||
| 6 | (forward_point): Remove prototype of defunct function. | ||
| 7 | (Qmodification_hooks, Qrear_nonsticky, Fnext_property_change) | ||
| 8 | (Fget_text_property, Fset_text_properties, Ftext_propertes_not_all) | ||
| 9 | (syms_of_textprop, set_text_properties): Remove prototypes that are | ||
| 10 | already in intervals.h. | ||
| 11 | |||
| 12 | * intervals.h (struct interval): Move from lisp.h. | ||
| 13 | Use EMACS_INT for position and size info. | ||
| 14 | |||
| 15 | * coding.c: Include intervals.h for Fset_text_properties. | ||
| 16 | |||
| 17 | * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for | ||
| 18 | position and length information. | ||
| 19 | |||
| 20 | 2003-07-09 Stefan Monnier <monnier@cs.yale.edu> | ||
| 21 | |||
| 3 | Change overlays_after and overlays_before so the overlays themselves | 22 | Change overlays_after and overlays_before so the overlays themselves |
| 4 | are linked into lists, rather than using cons cells. After all each | 23 | are linked into lists, rather than using cons cells. After all each |
| 5 | Lisp_Misc already occupies 5 words, so we can add a `next' field to | 24 | Lisp_Misc already occupies 5 words, so we can add a `next' field to |