aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2004-12-11 02:29:07 +0000
committerKenichi Handa2004-12-11 02:29:07 +0000
commit56cc8ca9b68886dc4aae4c8ef44ad5e62b59db49 (patch)
tree067e4533a73e27e060be92035853bfdb079535c7
parent4e38e23f636a97598dcfeac0175eeaeb3b209e36 (diff)
downloademacs-56cc8ca9b68886dc4aae4c8ef44ad5e62b59db49.tar.gz
emacs-56cc8ca9b68886dc4aae4c8ef44ad5e62b59db49.zip
(w32con_write_glyphs): Fix previous change.
-rw-r--r--src/w32console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32console.c b/src/w32console.c
index e16a89e52a9..858291bea38 100644
--- a/src/w32console.c
+++ b/src/w32console.c
@@ -349,7 +349,7 @@ w32con_write_glyphs (register struct glyph *string, register int len)
349 } 349 }
350 350
351 /* Write the characters. */ 351 /* Write the characters. */
352 if (!WriteConsoleOutputCharacter (cur_screen, terminal_encode_buffer, 352 if (!WriteConsoleOutputCharacter (cur_screen, conversion_buffer,
353 coding->produced, cursor_coords, 353 coding->produced, cursor_coords,
354 &r)) 354 &r))
355 { 355 {