diff options
| author | Gerd Moellmann | 2000-08-05 19:25:41 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-08-05 19:25:41 +0000 |
| commit | 36cc2d3834ce57748f38b69654fbcb2271e1a9a6 (patch) | |
| tree | 09e1b864c9e0c2d0342fcffb20265335744da4c3 | |
| parent | 1fd4c450e5273aed82a8d643ad8cdffd4b156280 (diff) | |
| download | emacs-36cc2d3834ce57748f38b69654fbcb2271e1a9a6.tar.gz emacs-36cc2d3834ce57748f38b69654fbcb2271e1a9a6.zip | |
(popup_get_selection): Use xfree instead of free.
| -rw-r--r-- | src/xmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 1102 | queue_tmp = queue; | 1102 | queue_tmp = queue; |
| 1103 | XPutBackEvent (queue_tmp->event.xany.display, &queue_tmp->event); | 1103 | XPutBackEvent (queue_tmp->event.xany.display, &queue_tmp->event); |
| 1104 | queue = queue_tmp->next; | 1104 | queue = queue_tmp->next; |
| 1105 | free ((char *)queue_tmp); | 1105 | xfree ((char *)queue_tmp); |
| 1106 | /* Cause these events to get read as soon as we UNBLOCK_INPUT. */ | 1106 | /* Cause these events to get read as soon as we UNBLOCK_INPUT. */ |
| 1107 | interrupt_input_pending = 1; | 1107 | interrupt_input_pending = 1; |
| 1108 | } | 1108 | } |