comparison src/print.c @ 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 ae62e12feac5
children 5d7438b61dd5
comparison
equal deleted inserted replaced
9316:5f7cfbdef872 9317:58f6a917533b
219 219
220 return; 220 return;
221 } 221 }
222 #endif /* not standalone */ 222 #endif /* not standalone */
223 223
224 XFASTINT (ch1) = ch; 224 XSETFASTINT (ch1, ch);
225 call1 (fun, ch1); 225 call1 (fun, ch1);
226 } 226 }
227 227
228 static void 228 static void
229 strout (ptr, size, printcharfun) 229 strout (ptr, size, printcharfun)