diff options
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 0e676e2c73c..a80394b5855 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2014-09-21 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Minor improvements to new stack-allocated Lisp objects. | ||
| 4 | * frame.h (FRAME_PARAMETER): | ||
| 5 | Prefer scoped_list1 to local_list1 where either would do. | ||
| 6 | * lisp.h (scoped_list4): New macro. | ||
| 7 | (local_cons, local_list1, local_list2, local_list3, local_list4) | ||
| 8 | (make_local_vector, make_local_string, build_local_string): | ||
| 9 | Prefer functions to macros where either would do. | ||
| 10 | * xdisp.c (build_desired_tool_bar_string): | ||
| 11 | Prefer scoped_list4 to local_list4 where either would do. | ||
| 12 | |||
| 1 | 2014-09-18 Dmitry Antipov <dmantipov@yandex.ru> | 13 | 2014-09-18 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 14 | ||
| 3 | More and more stack-allocated Lisp objects if USE_LOCAL_ALLOCATORS. | 15 | More and more stack-allocated Lisp objects if USE_LOCAL_ALLOCATORS. |