From ffd45f091dcbac36bb324a48c2488cae64a3cf60 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 29 Jun 2007 03:37:33 +0000 Subject: Replace uses of GC_* macros with the non-GC_ versions. --- src/w32menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/w32menu.c') diff --git a/src/w32menu.c b/src/w32menu.c index 3169be007ba..f33442244ce 100644 --- a/src/w32menu.c +++ b/src/w32menu.c @@ -259,10 +259,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)) -- cgit v1.2.1