1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

(strout): Fix whitespace.

This commit is contained in:
Andreas Schwab 2006-09-08 11:39:24 +00:00
parent 1118718c05
commit bcdbfd3668
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-09-08 Andreas Schwab <schwab@suse.de>
* print.c (strout): Fix whitespace.
2006-09-08 Kim F. Storm <storm@cua.dk>
* xterm.c (x_draw_glyph_string): Fix 2006-08-24 change.

View file

@ -413,7 +413,7 @@ strout (ptr, size, size_byte, printcharfun, multibyte)
if (size == size_byte)
{
for (i = 0; i < size; ++i)
insert_char ((unsigned char )*ptr++);
insert_char ((unsigned char) *ptr++);
}
else
{