diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/buffer.c b/src/buffer.c index 509ce51b55e..834a4a03b5b 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5308,8 +5308,8 @@ init_buffer_once (void) | |||
| 5308 | set_buffer_intervals (&buffer_defaults, NULL); | 5308 | set_buffer_intervals (&buffer_defaults, NULL); |
| 5309 | set_buffer_intervals (&buffer_local_symbols, NULL); | 5309 | set_buffer_intervals (&buffer_local_symbols, NULL); |
| 5310 | /* This is not strictly necessary, but let's make them initialized. */ | 5310 | /* This is not strictly necessary, but let's make them initialized. */ |
| 5311 | bset_name (&buffer_defaults, build_pure_c_string (" *buffer-defaults*")); | 5311 | bset_name (&buffer_defaults, build_string (" *buffer-defaults*")); |
| 5312 | bset_name (&buffer_local_symbols, build_pure_c_string (" *buffer-local-symbols*")); | 5312 | bset_name (&buffer_local_symbols, build_string (" *buffer-local-symbols*")); |
| 5313 | BUFFER_PVEC_INIT (&buffer_defaults); | 5313 | BUFFER_PVEC_INIT (&buffer_defaults); |
| 5314 | BUFFER_PVEC_INIT (&buffer_local_symbols); | 5314 | BUFFER_PVEC_INIT (&buffer_local_symbols); |
| 5315 | 5315 | ||
| @@ -5317,7 +5317,7 @@ init_buffer_once (void) | |||
| 5317 | /* Must do these before making the first buffer! */ | 5317 | /* Must do these before making the first buffer! */ |
| 5318 | 5318 | ||
| 5319 | /* real setup is done in bindings.el */ | 5319 | /* real setup is done in bindings.el */ |
| 5320 | bset_mode_line_format (&buffer_defaults, build_pure_c_string ("%-")); | 5320 | bset_mode_line_format (&buffer_defaults, build_string ("%-")); |
| 5321 | bset_header_line_format (&buffer_defaults, Qnil); | 5321 | bset_header_line_format (&buffer_defaults, Qnil); |
| 5322 | bset_tab_line_format (&buffer_defaults, Qnil); | 5322 | bset_tab_line_format (&buffer_defaults, Qnil); |
| 5323 | bset_abbrev_mode (&buffer_defaults, Qnil); | 5323 | bset_abbrev_mode (&buffer_defaults, Qnil); |
| @@ -5384,7 +5384,7 @@ init_buffer_once (void) | |||
| 5384 | current_buffer = 0; | 5384 | current_buffer = 0; |
| 5385 | pdumper_remember_lv_ptr_raw (¤t_buffer, Lisp_Vectorlike); | 5385 | pdumper_remember_lv_ptr_raw (¤t_buffer, Lisp_Vectorlike); |
| 5386 | 5386 | ||
| 5387 | QSFundamental = build_pure_c_string ("Fundamental"); | 5387 | QSFundamental = build_string ("Fundamental"); |
| 5388 | 5388 | ||
| 5389 | DEFSYM (Qfundamental_mode, "fundamental-mode"); | 5389 | DEFSYM (Qfundamental_mode, "fundamental-mode"); |
| 5390 | bset_major_mode (&buffer_defaults, Qfundamental_mode); | 5390 | bset_major_mode (&buffer_defaults, Qfundamental_mode); |
| @@ -5398,10 +5398,10 @@ init_buffer_once (void) | |||
| 5398 | 5398 | ||
| 5399 | /* Super-magic invisible buffer. */ | 5399 | /* Super-magic invisible buffer. */ |
| 5400 | Vprin1_to_string_buffer = | 5400 | Vprin1_to_string_buffer = |
| 5401 | Fget_buffer_create (build_pure_c_string (" prin1"), Qt); | 5401 | Fget_buffer_create (build_string (" prin1"), Qt); |
| 5402 | Vbuffer_alist = Qnil; | 5402 | Vbuffer_alist = Qnil; |
| 5403 | 5403 | ||
| 5404 | Fset_buffer (Fget_buffer_create (build_pure_c_string ("*scratch*"), Qnil)); | 5404 | Fset_buffer (Fget_buffer_create (build_string ("*scratch*"), Qnil)); |
| 5405 | 5405 | ||
| 5406 | inhibit_modification_hooks = 0; | 5406 | inhibit_modification_hooks = 0; |
| 5407 | } | 5407 | } |
| @@ -5584,9 +5584,9 @@ syms_of_buffer (void) | |||
| 5584 | Qoverwrite_mode_binary)); | 5584 | Qoverwrite_mode_binary)); |
| 5585 | 5585 | ||
| 5586 | Fput (Qprotected_field, Qerror_conditions, | 5586 | Fput (Qprotected_field, Qerror_conditions, |
| 5587 | pure_list (Qprotected_field, Qerror)); | 5587 | list (Qprotected_field, Qerror)); |
| 5588 | Fput (Qprotected_field, Qerror_message, | 5588 | Fput (Qprotected_field, Qerror_message, |
| 5589 | build_pure_c_string ("Attempt to modify a protected field")); | 5589 | build_string ("Attempt to modify a protected field")); |
| 5590 | 5590 | ||
| 5591 | DEFSYM (Qclone_indirect_buffer_hook, "clone-indirect-buffer-hook"); | 5591 | DEFSYM (Qclone_indirect_buffer_hook, "clone-indirect-buffer-hook"); |
| 5592 | 5592 | ||