comparison src/getchar.c @ 300:86cd0a77d2ae

updated for version 7.0079
author vimboss
date Sat, 04 Jun 2005 21:55:20 +0000
parents fb70e333c94e
children e111db373ca4
comparison
equal deleted inserted replaced
299:2bfc2b703314 300:86cd0a77d2ae
4340 * K_SPECIAL and CSI bytes */ 4340 * K_SPECIAL and CSI bytes */
4341 p = mb_unescape(&str); 4341 p = mb_unescape(&str);
4342 if (p != NULL) 4342 if (p != NULL)
4343 { 4343 {
4344 while (*p != NUL) 4344 while (*p != NUL)
4345 if (putc(*p++, fd) < 0) 4345 if (fputc(*p++, fd) < 0)
4346 return FAIL; 4346 return FAIL;
4347 --str; 4347 --str;
4348 continue; 4348 continue;
4349 } 4349 }
4350 #endif 4350 #endif