diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-06-29 03:37:33 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-06-29 03:37:33 +0000 |
commit | 8e50cc2df8df6f773422ab11805704eaa4bba016 (patch) | |
tree | 5041fa64f3f1bc6d4ffd1465a88a40055b7b39ab /src/xmenu.c | |
parent | df2d551eba1af9966308bb70da6dd5f4e03b650e (diff) | |
download | emacs-8e50cc2df8df6f773422ab11805704eaa4bba016.tar.gz |
Replace uses of GC_* macros with the non-GC_ versions.
Diffstat (limited to 'src/xmenu.c')
-rw-r--r-- | src/xmenu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 16ff30334d3..be8a758d442 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -248,10 +248,10 @@ menubar_id_to_frame (id) Lisp_Object tail, frame; FRAME_PTR f; - for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail)) + for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail)) { frame = XCAR (tail); - if (!GC_FRAMEP (frame)) + if (!FRAMEP (frame)) continue; f = XFRAME (frame); if (!FRAME_WINDOW_P (f)) @@ -1556,10 +1556,10 @@ show_help_event (f, widget, help) xt_or_gtk_widget frame_widget = XtParent (widget); Lisp_Object tail; - for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail)) + for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail)) { frame = XCAR (tail); - if (GC_FRAMEP (frame) + if (FRAMEP (frame) && (f = XFRAME (frame), FRAME_X_P (f) && f->output_data.x->widget == frame_widget)) break; |