diff options
| author | Dan Nicolaescu | 2009-11-11 19:25:24 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 19:25:24 +0000 |
| commit | f4265f6c27b42ce61d3189a99cf9d6247304f9fe (patch) | |
| tree | 0b32dac54528fedd632e29fd40eaaf8a817bd2f9 /src/buffer.c | |
| parent | aaa448c984ad227585dac4a2fe2ee5bdc467e25e (diff) | |
| download | emacs-f4265f6c27b42ce61d3189a99cf9d6247304f9fe.tar.gz 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/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index c4e90363c6a..8edea2d8728 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5302,7 +5302,7 @@ init_buffer_once () | |||
| 5302 | current_buffer = 0; | 5302 | current_buffer = 0; |
| 5303 | all_buffers = 0; | 5303 | all_buffers = 0; |
| 5304 | 5304 | ||
| 5305 | QSFundamental = build_string ("Fundamental"); | 5305 | QSFundamental = make_pure_c_string ("Fundamental"); |
| 5306 | 5306 | ||
| 5307 | Qfundamental_mode = intern_c_string ("fundamental-mode"); | 5307 | Qfundamental_mode = intern_c_string ("fundamental-mode"); |
| 5308 | buffer_defaults.major_mode = Qfundamental_mode; | 5308 | buffer_defaults.major_mode = Qfundamental_mode; |