diff options
| author | Dmitry Antipov | 2014-09-18 15:34:24 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-09-18 15:34:24 +0400 |
| commit | 3cab7dd46f43dfb3131a08d7d9fc5c05f221c454 (patch) | |
| tree | 9f3a11de853f9b84e754e87d568bd6500a5bc24a /src/process.c | |
| parent | e8be4f442baaf84a0d1c9e39b573a77ea9cda908 (diff) | |
| download | emacs-3cab7dd46f43dfb3131a08d7d9fc5c05f221c454.tar.gz emacs-3cab7dd46f43dfb3131a08d7d9fc5c05f221c454.zip | |
More and more stack-allocated Lisp objects if USE_LOCAL_ALLOCATORS.
* lisp.h (local_list4) [USE_LOCAL_ALLOCATORS]: New macro.
[!USE_LOCAL_ALLOCATORS]: Fall back to regular list4.
* frame.h (FRAME_PARAMETER): New macro.
* dispnew.c (init_display):
* fontset.c (Fset_fontset_font):
* frame.c (x_default_parameter):
* xfaces.c (set_font_frame_param, Finternal_merge_in_global_face):
* xfns.c (x_default_scroll_bar_color_parameter)
(x_default_font_parameter, x_create_tip_frame): Use it.
* editfns.c (Fpropertize): Use local_cons.
* process.c (status_message): Use build_local_string.
* xfont.c (xfont_open): Use make_local_string.
* xdisp.c (build_desired_tool_bar_string): Use local_list4.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 864aba496eb..0807939dd25 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -638,7 +638,7 @@ status_message (struct Lisp_Process *p) | |||
| 638 | { | 638 | { |
| 639 | string = Fnumber_to_string (make_number (code)); | 639 | string = Fnumber_to_string (make_number (code)); |
| 640 | string2 = build_local_string ("\n"); | 640 | string2 = build_local_string ("\n"); |
| 641 | return concat3 (build_string ("failed with code "), | 641 | return concat3 (build_local_string ("failed with code "), |
| 642 | string, string2); | 642 | string, string2); |
| 643 | } | 643 | } |
| 644 | else | 644 | else |