Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5bb8cce1
Commit
5bb8cce1
authored
Dec 21, 1995
by
Karl Heuer
Browse files
(read_minibuf): Pass PROPS arg to make_buffer_string.
Let make_buffer_string handle the gap.
parent
013961a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/minibuf.c
src/minibuf.c
+3
-1
No files found.
src/minibuf.c
View file @
5bb8cce1
...
...
@@ -298,8 +298,10 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
}
/* 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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment