# HG changeset patch # User Dave Love # Date 950393789 0 # Node ID 4004c0412483942aacb5a113c428b1e38e5ef427 # Parent ee4f82952cde8d42b2d1686191a960cd945bdd29 (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on Alpha. diff -r ee4f82952cde -r 4004c0412483 src/frame.h --- a/src/frame.h Sat Feb 12 19:50:59 2000 +0000 +++ b/src/frame.h Sat Feb 12 22:16:29 2000 +0000 @@ -689,7 +689,7 @@ ((FRAMEP (selected_frame) \ && FRAME_LIVE_P (XFRAME (selected_frame))) \ ? XFRAME (selected_frame) \ - : (struct frame *) (abort (), 0)) + : (struct frame *) (abort (), NULL)) /***********************************************************************