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
c2b736ca
Commit
c2b736ca
authored
Jun 25, 2002
by
Miles Bader
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fcall_interactively): When checking to see if doprnt hit
the end of callint_message, allow for a terminating '\0'.
parent
f2936ae0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/callint.c
src/callint.c
+1
-1
No files found.
src/ChangeLog
View file @
c2b736ca
2002-06-25 Miles Bader <miles@gnu.org>
* callint.c (Fcall_interactively): When checking to see if doprnt hit
the end of callint_message, allow for a terminating '\0'.
2002-06-24 Juanma Barranquero <lektu@terra.es>
* w32select.c: Include composite.h
...
...
src/callint.c
View file @
c2b736ca
...
...
@@ -464,7 +464,7 @@ supply if the command inquires which events were used to invoke it. */)
int
nchars
=
doprnt
(
callint_message
,
callint_message_size
,
prompt1
,
(
char
*
)
0
,
j
-
1
,
(
char
**
)
argstrings
+
1
);
if
(
nchars
<
callint_message_size
)
if
(
nchars
<
callint_message_size
-
1
)
break
;
callint_message_size
*=
2
;
callint_message
...
...
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