diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-11 19:25:24 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-11 19:25:24 +0000 |
commit | f4265f6c27b42ce61d3189a99cf9d6247304f9fe (patch) | |
tree | 0b32dac54528fedd632e29fd40eaaf8a817bd2f9 /src/frame.c | |
parent | aaa448c984ad227585dac4a2fe2ee5bdc467e25e (diff) | |
download | emacs-f4265f6c27b42ce61d3189a99cf9d6247304f9fe.tar.gz emacs-f4265f6c27b42ce61d3189a99cf9d6247304f9fe.tar.bz2 emacs-f4265f6c27b42ce61d3189a99cf9d6247304f9fe.zip |
* frame.c (make_initial_frame):
* buffer.c (init_buffer_once): Use make_pure_c_string instead of
build_string.
* alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index b3c3b83735b..467f6bd1482 100644 --- a/src/frame.c +++ b/src/frame.c @@ -543,7 +543,7 @@ make_initial_frame (void) Vframe_list = Fcons (frame, Vframe_list); tty_frame_count = 1; - f->name = build_string ("F1"); + f->name = make_pure_c_string ("F1"); f->visible = 1; f->async_visible = 1; |