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
cddde921
Commit
cddde921
authored
Sep 24, 2011
by
Glenn Morris
Browse files
* src/minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
parent
e1bf8792
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
src/ChangeLog
src/ChangeLog
+4
-0
src/minibuf.c
src/minibuf.c
+4
-0
No files found.
src/ChangeLog
View file @
cddde921
2011-09-24 Glenn Morris <rgm@gnu.org>
* minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
Fix minor problems found by static checking.
...
...
src/minibuf.c
View file @
cddde921
...
...
@@ -559,6 +559,10 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt,
minibuffer
=
get_minibuffer
(
minibuf_level
);
Fset_buffer
(
minibuffer
);
/* Defeat (setq-default truncate-lines t), since truncated lines do
not work correctly in minibuffers. (Bug#5715, etc) */
BVAR
(
current_buffer
,
truncate_lines
)
=
Qnil
;
/* If appropriate, copy enable-multibyte-characters into the minibuffer. */
if
(
inherit_input_method
)
BVAR
(
current_buffer
,
enable_multibyte_characters
)
=
enable_multibyte
;
...
...
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