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
1661e56b
Commit
1661e56b
authored
Aug 08, 2003
by
Andreas Schwab
Browse files
(print_string): Fix printing of multibyte string with
nontrivial printcharfun.
parent
ae6f46f9
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/print.c
src/print.c
+1
-1
No files found.
src/ChangeLog
View file @
1661e56b
2003-08-09 Andreas Schwab <schwab@suse.de>
* print.c (print_string): Fix printing of multibyte string with
nontrivial printcharfun.
2003-07-31 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2.
...
...
src/print.c
View file @
1661e56b
...
...
@@ -506,7 +506,7 @@ print_string (string, printcharfun)
for
(
i
=
0
;
i
<
size
;
i
++
)
PRINTCHAR
(
SREF
(
string
,
i
));
else
for
(
i
=
0
;
i
<
size_byte
;
i
++
)
for
(
i
=
0
;
i
<
size_byte
;
)
{
/* Here, we must convert each multi-byte form to the
corresponding character code before handing it to PRINTCHAR. */
...
...
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