comparison src/buffer.c @ 3242:f873e6b9af52

(reset_buffer): Clear mark_active field here. (reset_buffer_local_variables): Not here.
author Richard M. Stallman <rms@gnu.org>
date Sat, 29 May 1993 05:48:29 +0000
parents bc4beddaf2c7
children 4d405f172c79
comparison
equal deleted inserted replaced
3241:6c9b5f6dca70 3242:f873e6b9af52
277 b->auto_save_file_name = Qnil; 277 b->auto_save_file_name = Qnil;
278 b->read_only = Qnil; 278 b->read_only = Qnil;
279 b->overlays_before = Qnil; 279 b->overlays_before = Qnil;
280 b->overlays_after = Qnil; 280 b->overlays_after = Qnil;
281 XFASTINT (b->overlay_center) = 1; 281 XFASTINT (b->overlay_center) = 1;
282 b->mark_active = Qnil;
282 283
283 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ 284 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
284 INITIALIZE_INTERVAL (b, NULL_INTERVAL); 285 INITIALIZE_INTERVAL (b, NULL_INTERVAL);
285 286
286 reset_buffer_local_variables(b); 287 reset_buffer_local_variables(b);
302 b->minor_modes = Qnil; 303 b->minor_modes = Qnil;
303 b->downcase_table = Vascii_downcase_table; 304 b->downcase_table = Vascii_downcase_table;
304 b->upcase_table = Vascii_upcase_table; 305 b->upcase_table = Vascii_upcase_table;
305 b->case_canon_table = Vascii_downcase_table; 306 b->case_canon_table = Vascii_downcase_table;
306 b->case_eqv_table = Vascii_upcase_table; 307 b->case_eqv_table = Vascii_upcase_table;
307 b->mark_active = Qnil;
308 #if 0 308 #if 0
309 b->sort_table = XSTRING (Vascii_sort_table); 309 b->sort_table = XSTRING (Vascii_sort_table);
310 b->folding_sort_table = XSTRING (Vascii_folding_sort_table); 310 b->folding_sort_table = XSTRING (Vascii_folding_sort_table);
311 #endif /* 0 */ 311 #endif /* 0 */
312 312