aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1999-09-12 17:29:24 +0000
committerRichard M. Stallman1999-09-12 17:29:24 +0000
commita1628e9150a977a59220d009249ec16de500e38f (patch)
tree30aefec6e9788a3a3164c7a9df9f377b7e2bc383 /src
parente2dae3f29f795bc0f04f7bf6987480bf43e450dc (diff)
downloademacs-a1628e9150a977a59220d009249ec16de500e38f.tar.gz
emacs-a1628e9150a977a59220d009249ec16de500e38f.zip
(del_range_1): Don't treat minibuffer prompt specially.
Diffstat (limited to 'src')
-rw-r--r--src/insdel.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/insdel.c b/src/insdel.c
index 72437face1e..c0157772f13 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -2083,13 +2083,6 @@ del_range_1 (from, to, prepare)
2083 int from, to, prepare; 2083 int from, to, prepare;
2084{ 2084{
2085 int from_byte, to_byte; 2085 int from_byte, to_byte;
2086
2087 if (INTEGERP (current_buffer->minibuffer_prompt_length))
2088 {
2089 /* Don't delete part of a mini-buffer prompt. */
2090 int len = XFASTINT (current_buffer->minibuffer_prompt_length);
2091 from = max (from, len);
2092 }
2093 2086
2094 /* Make args be valid */ 2087 /* Make args be valid */
2095 if (from < BEGV) 2088 if (from < BEGV)