comparison src/print.c @ 16520:d18129921259

(PRINTFINISH): Use xfree, not free.
author Richard M. Stallman <rms@gnu.org>
date Tue, 05 Nov 1996 19:48:26 +0000
parents ecf0700e9550
children 5889a6e7c71b
comparison
equal deleted inserted replaced
16519:b96e56680038 16520:d18129921259
212 #define PRINTFINISH \ 212 #define PRINTFINISH \
213 if (NILP (printcharfun)) \ 213 if (NILP (printcharfun)) \
214 insert (print_buffer, print_buffer_pos); \ 214 insert (print_buffer, print_buffer_pos); \
215 if (free_print_buffer) \ 215 if (free_print_buffer) \
216 { \ 216 { \
217 free (print_buffer); \ 217 xfree (print_buffer); \
218 print_buffer = 0; \ 218 print_buffer = 0; \
219 } \ 219 } \
220 unbind_to (specpdl_count, Qnil); \ 220 unbind_to (specpdl_count, Qnil); \
221 if (MARKERP (original)) \ 221 if (MARKERP (original)) \
222 Fset_marker (original, make_number (PT), Qnil); \ 222 Fset_marker (original, make_number (PT), Qnil); \