diff options
| author | Daniel Colascione | 2015-03-02 19:08:06 -0800 |
|---|---|---|
| committer | Daniel Colascione | 2015-03-02 19:08:06 -0800 |
| commit | 2cc23f170f920cbfc9df4c28bce6ca9d82c4e6cd (patch) | |
| tree | ba2ba78402bf75eed26d3f20abeac5c02eb74694 /src/ChangeLog | |
| parent | 8af3e1848cbdc570b6c173480c2988a552f3f74d (diff) | |
| download | emacs-2cc23f170f920cbfc9df4c28bce6ca9d82c4e6cd.tar.gz emacs-2cc23f170f920cbfc9df4c28bce6ca9d82c4e6cd.zip | |
Finalizer documentation, minor improvements
* doc/lispref/objects.texi (Finalizer Type): New section
(Type Predicates): Mention finalizers in `type-of' documentation.
* doc/lispref/elisp.texi (Top): Link to finalizer type.
* src/data.c (Ftype_of): Make `type-of' work with finalizers.
(syms_of_data): Register Qfinalizer.
* src/print.c (print_object): Print whether a finalizer has
been called.
* test/automated/finalizer-tests.el (finalizer-object-type): Test that
`type-of' works correctly for finalizers.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2f04d0b040a..930a33b277a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2015-03-03 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * print.c (print_object): Print whether a finalizer has | ||
| 4 | been called. | ||
| 5 | |||
| 6 | * data.c (Ftype_of): Make `type-of' work with finalizers. | ||
| 7 | (syms_of_data): Register Qfinalizer. | ||
| 8 | |||
| 1 | 2015-03-02 Daniel Colascione <dancol@dancol.org> | 9 | 2015-03-02 Daniel Colascione <dancol@dancol.org> |
| 2 | 10 | ||
| 3 | * print.c (print_object): Print finalizers. | 11 | * print.c (print_object): Print finalizers. |