]> git.eshelyaron.com Git - emacs.git/commitdiff
(SELECTED_FRAME): Use NULL, not 0 to avoid warnings on
authorDave Love <fx@gnu.org>
Sat, 12 Feb 2000 22:21:05 +0000 (22:21 +0000)
committerDave Love <fx@gnu.org>
Sat, 12 Feb 2000 22:21:05 +0000 (22:21 +0000)
Alpha.

src/ChangeLog
src/frame.h

index 795eb815f062e4f4752138b9abae7864d8ef7a65..793d8f49d61c4d19b823dc20a1b157b2c88c2159 100644 (file)
@@ -1,3 +1,8 @@
+2000-02-12  Dave Love  <fx@gnu.org>
+
+       * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on
+       Alpha.
+
 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
 
        * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
index d1c16705e66982faa3a5785279ee44175dc789f9..d33393aed10fc4496def6b1fc1d07aac62d196b1 100644 (file)
@@ -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))
 
 \f
 /***********************************************************************