diff options
| author | Dmitry Antipov | 2012-07-27 10:04:35 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-07-27 10:04:35 +0400 |
| commit | 694b6c97ebb8310bc18dd305c2f277bcc11cebca (patch) | |
| tree | e8c401a50de10b8b14397a22c7e501f0291a17f5 /src/ChangeLog | |
| parent | ca1302a40a560521627fd6a2954a51a79d105a16 (diff) | |
| download | emacs-694b6c97ebb8310bc18dd305c2f277bcc11cebca.tar.gz emacs-694b6c97ebb8310bc18dd305c2f277bcc11cebca.zip | |
Utility function to make a list from specified amount of objects.
* lisp.h (enum constype): New datatype.
(listn): New prototype.
* alloc.c (listn): New function.
(Fmemory_use_count, syms_of_alloc): Use it.
* buffer.c (syms_of_buffer): Likewise.
* callint.c (syms_of_callint): Likewise.
* charset.c (define_charset_internal): Likewise.
* coding.c (syms_of_coding): Likewise.
* keymap.c (syms_of_keymap): Likewise.
* search.c (syms_of_search): Likewise.
* syntax.c (syms_of_syntax): Likewise.
* w32.c (init_environment): Likewise.
* w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
* xdisp.c (syms_of_xdisp): Likewise.
* xfns.c (syms_of_xfns): Likewise.
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 e78a0365288..e1d0ef8e90e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,24 @@ | |||
| 1 | 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | Utility function to make a list from specified amount of objects. | ||
| 4 | * lisp.h (enum constype): New datatype. | ||
| 5 | (listn): New prototype. | ||
| 6 | * alloc.c (listn): New function. | ||
| 7 | (Fmemory_use_count, syms_of_alloc): Use it. | ||
| 8 | * buffer.c (syms_of_buffer): Likewise. | ||
| 9 | * callint.c (syms_of_callint): Likewise. | ||
| 10 | * charset.c (define_charset_internal): Likewise. | ||
| 11 | * coding.c (syms_of_coding): Likewise. | ||
| 12 | * keymap.c (syms_of_keymap): Likewise. | ||
| 13 | * search.c (syms_of_search): Likewise. | ||
| 14 | * syntax.c (syms_of_syntax): Likewise. | ||
| 15 | * w32.c (init_environment): Likewise. | ||
| 16 | * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise. | ||
| 17 | * xdisp.c (syms_of_xdisp): Likewise. | ||
| 18 | * xfns.c (syms_of_xfns): Likewise. | ||
| 19 | |||
| 20 | 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 21 | |||
| 3 | Fast save_excursion_save and save_excursion_restore. | 22 | Fast save_excursion_save and save_excursion_restore. |
| 4 | * lisp.h (struct Lisp_Excursion): New data type. | 23 | * lisp.h (struct Lisp_Excursion): New data type. |
| 5 | (PVEC_EXCURSION): New pseudovector type. | 24 | (PVEC_EXCURSION): New pseudovector type. |