Mercurial > hg > xemacs-beta
comparison src/print.c @ 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 | 183866b06e0b |
children | 910449c92002 |
comparison
equal
deleted
inserted
replaced
570:db376c5066a7 | 571:4326eeed6933 |
---|---|
1359 abort (); | 1359 abort (); |
1360 #else /* not ERROR_CHECK_TYPECHECK */ | 1360 #else /* not ERROR_CHECK_TYPECHECK */ |
1361 char buf[128]; | 1361 char buf[128]; |
1362 /* We're in trouble if this happens! */ | 1362 /* We're in trouble if this happens! */ |
1363 if (print_readably) | 1363 if (print_readably) |
1364 ty(e_error (Qinternal_error, "printing illegal data type #o%03o", | 1364 signal_error (Qinternal_error, "printing illegal data type #o%03o", |
1365 (int) XTYPE (obj)); | 1365 (int) XTYPE (obj)); |
1366 write_c_string ("#<EMACS BUG: ILLEGAL DATATYPE ", | 1366 write_c_string ("#<EMACS BUG: ILLEGAL DATATYPE ", |
1367 printcharfun); | 1367 printcharfun); |
1368 sprintf (buf, "(#o%3o)", (int) XTYPE (obj)); | 1368 sprintf (buf, "(#o%3o)", (int) XTYPE (obj)); |
1369 write_c_string (buf, printcharfun); | 1369 write_c_string (buf, printcharfun); |
1370 write_c_string | 1370 write_c_string |