diff options
| author | Richard M. Stallman | 1993-05-29 05:48:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-29 05:48:29 +0000 |
| commit | dfda7a7fc5c329678b05f90d92de46de401816ea (patch) | |
| tree | ae514feca4950fc613f7258d1f0c783b379e7a27 /src/buffer.c | |
| parent | 1f5038b52e5c14d69a4615c9992625e848f6d43b (diff) | |
| download | emacs-dfda7a7fc5c329678b05f90d92de46de401816ea.tar.gz emacs-dfda7a7fc5c329678b05f90d92de46de401816ea.zip | |
(reset_buffer): Clear mark_active field here.
(reset_buffer_local_variables): Not here.
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 55598e4dd1b..4e62464e658 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -279,6 +279,7 @@ reset_buffer (b) | |||
| 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); |
| @@ -304,7 +305,6 @@ reset_buffer_local_variables (b) | |||
| 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); |