# HG changeset patch # User Karl Heuer # Date 781286963 0 # Node ID 58f6a917533b0ca5046467f556a25cd52763ddb5 # Parent 5f7cfbdef872d14089c99168c1f491fa18886b83 (printchar): Don't use XFASTINT as an lvalue. diff -r 5f7cfbdef872 -r 58f6a917533b src/print.c --- a/src/print.c Tue Oct 04 16:08:54 1994 +0000 +++ b/src/print.c Tue Oct 04 16:09:23 1994 +0000 @@ -221,7 +221,7 @@ } #endif /* not standalone */ - XFASTINT (ch1) = ch; + XSETFASTINT (ch1, ch); call1 (fun, ch1); }