changeset 13775:beedfd49bc1b

(read_minibuf): Pass PROPS arg to make_buffer_string. Let make_buffer_string handle the gap.
author Karl Heuer <kwzh@gnu.org>
date Thu, 21 Dec 1995 17:12:20 +0000
parents 2e1d9d11e506
children 8160ed43603e
files src/minibuf.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/minibuf.c	Thu Dec 21 17:11:50 1995 +0000
+++ b/src/minibuf.c	Thu Dec 21 17:12:20 1995 +0000
@@ -298,8 +298,10 @@
     }
 
   /* Make minibuffer contents into a string */
-  val = make_buffer_string (1, Z);
+  val = make_buffer_string (1, Z, 1);
+#if 0  /* make_buffer_string should handle the gap.  */
   bcopy (GAP_END_ADDR, XSTRING (val)->data + GPT - BEG, Z - GPT);
+#endif
 
   /* VAL is the string of minibuffer text.  */
   last_minibuf_string = val;