Mercurial > hg > xemacs-beta
comparison src/file-coding.c @ 3420:a9bb932a03b5
[xemacs-hg @ 2006-05-23 19:38:29 by aidan]
Fix Win32 build; cast stderr_out string arguments to const CIbyte *
author | aidan |
---|---|
date | Tue, 23 May 2006 19:38:30 +0000 |
parents | e13aec8357bb |
children | ca9976dc328e |
comparison
equal
deleted
inserted
replaced
3419:5a3b5e10f399 | 3420:a9bb932a03b5 |
---|---|
3388 hex[3 * i - 1] = '\0'; | 3388 hex[3 * i - 1] = '\0'; |
3389 | 3389 |
3390 eicpy_ext(eistr_hex, hex, Qbinary); | 3390 eicpy_ext(eistr_hex, hex, Qbinary); |
3391 eicpy_ext(eistr_ascii, ascii, Qbinary); | 3391 eicpy_ext(eistr_ascii, ascii, Qbinary); |
3392 | 3392 |
3393 stderr_out ("%s %s", eidata(eistr_ascii), eidata(eistr_hex)); | 3393 stderr_out ("%s %s", (const CIbyte *)(eidata(eistr_ascii)), |
3394 (const CIbyte *)eidata(eistr_hex)); | |
3394 } | 3395 } |
3395 | 3396 |
3396 #endif /* DEBUG_XEMACS */ | 3397 #endif /* DEBUG_XEMACS */ |
3397 | 3398 |
3398 /* Attempt to determine the encoding of the given text. Before calling | 3399 /* Attempt to determine the encoding of the given text. Before calling |