From: Gerd Moellmann Date: Sat, 5 Aug 2000 19:25:41 +0000 (+0000) Subject: (popup_get_selection): Use xfree instead of free. X-Git-Tag: emacs-pretest-21.0.90~2485 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=36cc2d3834ce57748f38b69654fbcb2271e1a9a6;p=emacs.git (popup_get_selection): Use xfree instead of free. --- diff --git a/src/xmenu.c b/src/xmenu.c index 8da7bf7b311..9f5fd8b55aa 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -1102,7 +1102,7 @@ popup_get_selection (initial_event, dpyinfo, id) queue_tmp = queue; XPutBackEvent (queue_tmp->event.xany.display, &queue_tmp->event); queue = queue_tmp->next; - free ((char *)queue_tmp); + xfree ((char *)queue_tmp); /* Cause these events to get read as soon as we UNBLOCK_INPUT. */ interrupt_input_pending = 1; }