From: Richard M. Stallman Date: Sun, 27 Apr 1997 03:25:32 +0000 (+0000) Subject: (Fdelete_frame): Free FRAME_MESSAGE_BUF. X-Git-Tag: emacs-20.1~2372 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=25734faf59d55f88d603bc6580cefb2ad70caddc;p=emacs.git (Fdelete_frame): Free FRAME_MESSAGE_BUF. --- diff --git a/src/frame.c b/src/frame.c index e8408f20a1d..ac5458ca58d 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1165,6 +1165,8 @@ but if the second optional argument FORCE is non-nil, you may do so.") free (FRAME_INSERTN_COST (f)); if (FRAME_DELETE_COST (f)) free (FRAME_DELETE_COST (f)); + if (FRAME_MESSAGE_BUF (f)) + free (FRAME_MESSAGE_BUF (f)); #ifdef HAVE_WINDOW_SYSTEM /* Free all fontset data. */