From: Richard M. Stallman Date: Tue, 5 Nov 1996 19:48:26 +0000 (+0000) Subject: (PRINTFINISH): Use xfree, not free. X-Git-Tag: emacs-20.1~3424 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99351a0ddacd3044610894b9c19b9e661972432c;p=emacs.git (PRINTFINISH): Use xfree, not free. --- diff --git a/src/print.c b/src/print.c index 1bea06e8b67..db0b4cba965 100644 --- a/src/print.c +++ b/src/print.c @@ -214,7 +214,7 @@ glyph_to_str_cpy (glyphs, str) insert (print_buffer, print_buffer_pos); \ if (free_print_buffer) \ { \ - free (print_buffer); \ + xfree (print_buffer); \ print_buffer = 0; \ } \ unbind_to (specpdl_count, Qnil); \