diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-11-05 19:48:26 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-11-05 19:48:26 +0000 |
commit | dde0fd51f72dc0a56780030b050570bc76299c91 (patch) | |
tree | f6cab8848d8724899f0315bfed11c640c2e1b196 /src | |
parent | 00aeb29736b618c2a4def0e672d4f66e7f471e70 (diff) | |
download | emacs-dde0fd51f72dc0a56780030b050570bc76299c91.tar.gz |
(PRINTFINISH): Use xfree, not free.
Diffstat (limited to 'src')
-rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); \ |