From: Dave Love Date: Sat, 12 Feb 2000 22:21:05 +0000 (+0000) Subject: (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on X-Git-Tag: emacs-pretest-21.0.90~5026 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1063ebb5b3862e3d4579230755e7dca04b69769e;p=emacs.git (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on Alpha. --- diff --git a/src/ChangeLog b/src/ChangeLog index 795eb815f06..793d8f49d61 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2000-02-12 Dave Love + + * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on + Alpha. + 2000-02-12 Gerd Moellmann * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively. diff --git a/src/frame.h b/src/frame.h index d1c16705e66..d33393aed10 100644 --- a/src/frame.h +++ b/src/frame.h @@ -689,7 +689,7 @@ extern Lisp_Object selected_frame; ((FRAMEP (selected_frame) \ && FRAME_LIVE_P (XFRAME (selected_frame))) \ ? XFRAME (selected_frame) \ - : (struct frame *) (abort (), 0)) + : (struct frame *) (abort (), NULL)) /***********************************************************************