diff options
| author | Stefan Monnier | 2007-10-02 21:55:27 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-10-02 21:55:27 +0000 |
| commit | d0fdb6daaec286bd55dd92e998c11beceda189bd (patch) | |
| tree | 354d035730ec1bd27b3db9713b732e78e16cbe85 /src/ChangeLog | |
| parent | 878f97ffedc5b4fc785beac809c3d4392f531eca (diff) | |
| download | emacs-d0fdb6daaec286bd55dd92e998c11beceda189bd.tar.gz emacs-d0fdb6daaec286bd55dd92e998c11beceda189bd.zip | |
* window.h (struct window):
* window.c (struct save_window_data, struct saved_window):
* termhooks.h (struct terminal):
* process.h (struct Lisp_Process):
* frame.h (struct frame):
* buffer.h (struct buffer):
* lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
(struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
The size field of (pseudo)vectors is now unsigned.
(ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a30815d2bd8..c38a2e32f56 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,19 @@ | |||
| 1 | 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * window.h (struct window): | ||
| 4 | * window.c (struct save_window_data, struct saved_window): | ||
| 5 | * termhooks.h (struct terminal): | ||
| 6 | * process.h (struct Lisp_Process): | ||
| 7 | * frame.h (struct frame): | ||
| 8 | * buffer.h (struct buffer): | ||
| 9 | * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table) | ||
| 10 | (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table): | ||
| 11 | The size field of (pseudo)vectors is now unsigned. | ||
| 12 | (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly. | ||
| 13 | |||
| 3 | * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end. | 14 | * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end. |
| 4 | Turn `count' into an integer. | 15 | Turn `count' into an integer. |
| 16 | |||
| 5 | * fns.c (make_hash_table, hash_put, hash_remove, hash_clear) | 17 | * fns.c (make_hash_table, hash_put, hash_remove, hash_clear) |
| 6 | (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count): | 18 | (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count): |
| 7 | * print.c (print_object) <HASH_TABLE_P>: `count' is an int. | 19 | * print.c (print_object) <HASH_TABLE_P>: `count' is an int. |