changeset 9317:58f6a917533b

(printchar): Don't use XFASTINT as an lvalue.
author Karl Heuer <kwzh@gnu.org>
date Tue, 04 Oct 1994 16:09:23 +0000
parents 5f7cfbdef872
children a14cc1712337
files src/print.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
 }