changeset 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 f6f6fc9eb269
files src/ChangeLog src/doprnt.c
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Tue Nov 28 13:01:29 2006 +0000
+++ b/src/ChangeLog	Tue Nov 28 16:09:47 2006 +0000
@@ -1,3 +1,8 @@
+2006-11-28  Aidan Kehoe  <kehoea@parhasard.net>
+
+	* doprnt.c (emacs_doprnt_1):
+	Ibyte -> Ascbyte, for the sake of the MSVC build. Thank you Vin. 
+
 2006-11-28  Aidan Kehoe  <kehoea@parhasard.net>
 
 	* doprnt.c (emacs_doprnt_1):
--- a/src/doprnt.c	Tue Nov 28 13:01:29 2006 +0000
+++ b/src/doprnt.c	Tue Nov 28 16:09:47 2006 +0000
@@ -776,9 +776,9 @@
 #endif /* HAVE_BIGFLOAT */
 	  else
 	    {
-	      Ibyte *text_to_print = alloca_array (char, 350);
-	      Ibyte constructed_spec[100];
-	      Ibyte *p = constructed_spec;
+	      Ascbyte *text_to_print = alloca_array (char, 350);
+	      Ascbyte constructed_spec[100];
+	      Ascbyte *p = constructed_spec;
 
 	      /* Mostly reconstruct the spec and use sprintf() to
 		 format the string. */