From c0d9a0c30ce4d596e102bd4b7b971540a51b846b Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Sun, 17 Oct 1999 12:53:14 +0000 Subject: [PATCH] (Fget_buffer_create, Fmake_indirect_buffer, Fkill_buffer): Don't initialize prompt_end_charpos field. --- src/buffer.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/buffer.c b/src/buffer.c index 0fc6bb4666..6ab4200b75 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -373,7 +373,6 @@ The value is never nil.") b->newline_cache = 0; b->width_run_cache = 0; b->width_table = Qnil; - b->prompt_end_charpos = Qnil; b->prevent_redisplay_optimizations_p = 1; /* Put this on the chain of all buffers including killed ones. */ @@ -453,7 +452,6 @@ NAME should be a string which is not the name of an existing buffer.") b->newline_cache = 0; b->width_run_cache = 0; b->width_table = Qnil; - b->prompt_end_charpos = Qnil; /* Put this on the chain of all buffers including killed ones. */ b->next = all_buffers; @@ -1222,7 +1220,6 @@ with SIGHUP.") b->width_run_cache = 0; } b->width_table = Qnil; - b->prompt_end_charpos = Qnil; UNBLOCK_INPUT; b->undo_list = Qnil; @@ -1704,11 +1701,8 @@ so the buffer is truly empty after this.") () { Fwiden (); - - if (INTEGERP (current_buffer->prompt_end_charpos)) - del_range (XINT (current_buffer->prompt_end_charpos), Z); - else - del_range (BEG, Z); + + del_range (BEG, Z); current_buffer->last_window_start = 1; /* Prevent warnings, or suspension of auto saving, that would happen -- 2.20.1