Mercurial > hg > xemacs-beta
changeset 579:0e1f61d4b978
[xemacs-hg @ 2001-05-26 06:11:03 by martinb]
Cleaning up after error-handling patch: fix compile error
author | martinb |
---|---|
date | Sat, 26 May 2001 06:11:08 +0000 |
parents | 190b164ddcac |
children | 55e998c311f5 |
files | src/ChangeLog src/print.c |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri May 25 11:27:01 2001 +0000 +++ b/src/ChangeLog Sat May 26 06:11:08 2001 +0000 @@ -1,3 +1,7 @@ +2001-05-26 Martin Buchholz <martin@xemacs.org> + + * print.c (print_internal): Fix compile error. + 2001-05-25 Ben Wing <ben@xemacs.org> * device-msw.c (msprinter_default_printer):
--- a/src/print.c Fri May 25 11:27:01 2001 +0000 +++ b/src/print.c Sat May 26 06:11:08 2001 +0000 @@ -1417,7 +1417,7 @@ /* We're in trouble if this happens! */ if (print_readably) signal_error (Qinternal_error, "printing illegal data type #o%03o", - (int) XTYPE (obj)); + make_int (XTYPE (obj))); write_c_string ("#<EMACS BUG: ILLEGAL DATATYPE ", printcharfun); sprintf (buf, "(#o%3o)", (int) XTYPE (obj));