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
857c4c67
Commit
857c4c67
authored
Sep 03, 1996
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(doprnt1): If lispstrings, accept a string
as a `struct Lisp_String *'.
parent
0f26b958
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/doprnt.c
src/doprnt.c
+2
-2
No files found.
src/doprnt.c
View file @
857c4c67
...
...
@@ -201,8 +201,8 @@ doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args)
minlen
=
atoi
(
&
fmtcpy
[
1
]);
if
(
lispstrings
)
{
string
=
(
char
*
)
XSTRING
(((
Lisp_Object
*
)
args
)
[
cnt
])
->
data
;
tem
=
XSTRING
(((
Lisp_Object
*
)
args
)
[
cnt
])
->
size
;
string
=
(
char
*
)
((
struct
Lisp_String
*
)
args
[
cnt
])
->
data
;
tem
=
((
struct
Lisp_String
*
)
args
[
cnt
])
->
size
;
cnt
++
;
}
else
...
...
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