diff options
| author | Richard M. Stallman | 1996-11-05 19:48:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-11-05 19:48:26 +0000 |
| commit | 99351a0ddacd3044610894b9c19b9e661972432c (patch) | |
| tree | 81f594ee402d301a28934c26df1b0449e624cf0d /src | |
| parent | 01e6e8c90496fd85cbe63df287f7c2d602d74b5f (diff) | |
| download | emacs-99351a0ddacd3044610894b9c19b9e661972432c.tar.gz emacs-99351a0ddacd3044610894b9c19b9e661972432c.zip | |
(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) | |||
| 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); \ |