diff options
| author | Stefan Monnier | 2003-07-09 20:31:19 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-07-09 20:31:19 +0000 |
| commit | 5f6bf5fecb9eb6e8448adabad1c4e0d7b7c841e4 (patch) | |
| tree | fddc85791275ab7755157729bdc30d579ac3736e /src/ChangeLog | |
| parent | f209c999c0431d9c48c2efc089d4e5757df583c7 (diff) | |
| download | emacs-5f6bf5fecb9eb6e8448adabad1c4e0d7b7c841e4.tar.gz emacs-5f6bf5fecb9eb6e8448adabad1c4e0d7b7c841e4.zip | |
(VALBITS): Define in terms of GCTYPEBITS.
(struct interval): Move to intervals.h.
(struct Lisp_Marker): Use EMACS_INT for position info.
(forward_point): Remove prototype of defunct function.
(Qmodification_hooks, Qrear_nonsticky, Fnext_property_change)
(Fget_text_property, Fset_text_properties, Ftext_propertes_not_all)
(syms_of_textprop, set_text_properties): Remove prototypes that are
already in intervals.h.
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 |