Mercurial > hg > xemacs-beta
comparison src/doprnt.c @ 3706:4ca1ef2bdb6a
[xemacs-hg @ 2006-11-28 16:09:45 by aidan]
Ibyte -> Ascbyte for constants, for the sake of the MSVC build.
author | aidan |
---|---|
date | Tue, 28 Nov 2006 16:09:47 +0000 |
parents | fcf6ccb70eea |
children | 89e64783d068 |
comparison
equal
deleted
inserted
replaced
3705:fcf6ccb70eea | 3706:4ca1ef2bdb6a |
---|---|
774 xfree (text_to_print, Ibyte *); | 774 xfree (text_to_print, Ibyte *); |
775 } | 775 } |
776 #endif /* HAVE_BIGFLOAT */ | 776 #endif /* HAVE_BIGFLOAT */ |
777 else | 777 else |
778 { | 778 { |
779 Ibyte *text_to_print = alloca_array (char, 350); | 779 Ascbyte *text_to_print = alloca_array (char, 350); |
780 Ibyte constructed_spec[100]; | 780 Ascbyte constructed_spec[100]; |
781 Ibyte *p = constructed_spec; | 781 Ascbyte *p = constructed_spec; |
782 | 782 |
783 /* Mostly reconstruct the spec and use sprintf() to | 783 /* Mostly reconstruct the spec and use sprintf() to |
784 format the string. */ | 784 format the string. */ |
785 | 785 |
786 *p++ = '%'; | 786 *p++ = '%'; |