changeset 571:4326eeed6933

[xemacs-hg @ 2001-05-25 02:57:32 by martinb] fix compile error
author martinb
date Fri, 25 May 2001 02:57:34 +0000
parents db376c5066a7
children 0f910da8ca73
files src/ChangeLog src/print.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Fri May 25 02:45:59 2001 +0000
+++ b/src/ChangeLog	Fri May 25 02:57:34 2001 +0000
@@ -1,5 +1,7 @@
 2001-05-25  Martin Buchholz  <martin@xemacs.org>
 
+	* print.c (print_internal): Fix compile error.
+
 	* miscplay.c (waverequire): Don't inline.
 	Gcc can't inline functions that call alloca.
 
--- a/src/print.c	Fri May 25 02:45:59 2001 +0000
+++ b/src/print.c	Fri May 25 02:57:34 2001 +0000
@@ -1361,8 +1361,8 @@
 	char buf[128];
 	/* We're in trouble if this happens! */
 	if (print_readably)
-	  ty(e_error (Qinternal_error, "printing illegal data type #o%03o",
-		      (int) XTYPE (obj));
+	  signal_error (Qinternal_error, "printing illegal data type #o%03o",
+			(int) XTYPE (obj));
 	write_c_string ("#<EMACS BUG: ILLEGAL DATATYPE ",
 			printcharfun);
 	sprintf (buf, "(#o%3o)", (int) XTYPE (obj));