Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ca22b785
Commit
ca22b785
authored
Dec 25, 2011
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* callint.c (Fcall_interactively): Don't truncate prompt string.
parent
be8b11bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
src/ChangeLog
src/ChangeLog
+4
-0
src/callint.c
src/callint.c
+2
-9
No files found.
src/ChangeLog
View file @
ca22b785
2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
* callint.c (Fcall_interactively): Don't truncate prompt string.
2011-12-23 Eli Zaretskii <eliz@gnu.org>
* xdisp.c (handle_invisible_prop): Handle correctly an invisible
...
...
src/callint.c
View file @
ca22b785
...
...
@@ -274,8 +274,6 @@ invoke it. If KEYS is omitted or nil, the return value of
ptrdiff_t
i
,
nargs
;
int
foo
;
char
prompt1
[
100
];
char
*
tem1
;
int
arg_from_tty
=
0
;
struct
gcpro
gcpro1
,
gcpro2
,
gcpro3
,
gcpro4
,
gcpro5
;
int
key_count
;
...
...
@@ -491,13 +489,8 @@ invoke it. If KEYS is omitted or nil, the return value of
tem
=
string
;
for
(
i
=
1
;
*
tem
;
i
++
)
{
strncpy
(
prompt1
,
tem
+
1
,
sizeof
prompt1
-
1
);
prompt1
[
sizeof
prompt1
-
1
]
=
0
;
tem1
=
strchr
(
prompt1
,
'\n'
);
if
(
tem1
)
*
tem1
=
0
;
visargs
[
0
]
=
build_string
(
prompt1
);
if
(
strchr
(
prompt1
,
'%'
))
visargs
[
0
]
=
make_string
(
tem
+
1
,
strcspn
(
tem
+
1
,
"
\n
"
));
if
(
strchr
(
SSDATA
(
visargs
[
0
]),
'%'
))
callint_message
=
Fformat
(
i
,
visargs
);
else
callint_message
=
visargs
[
0
];
...
...
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