diff src/insdel.c @ 25351:c7247eabc834

Remove conditional compilation on NO_PROMPT_IN_BUFFER.
author Gerd Moellmann <gerd@gnu.org>
date Sat, 21 Aug 1999 19:29:47 +0000
parents 824b89fca192
children 6e6b29a72e2c
line wrap: on
line diff
--- a/src/insdel.c	Sat Aug 21 19:29:38 1999 +0000
+++ b/src/insdel.c	Sat Aug 21 19:29:47 1999 +0000
@@ -2052,14 +2052,12 @@
 {
   int from_byte, to_byte;
   
-#if !NO_PROMPT_IN_BUFFER
   if (INTEGERP (current_buffer->minibuffer_prompt_length))
     {
       /* Don't delete part of a mini-buffer prompt.  */
       int len = XFASTINT (current_buffer->minibuffer_prompt_length);
       from = max (from, len);
     }
-#endif /* !NO_PROMPT_IN_BUFFER */
 
   /* Make args be valid */
   if (from < BEGV)