# HG changeset patch # User Richard M. Stallman # Date 797792165 0 # Node ID 8ab99c3646a7394dd67aece0293a2b7afa060853 # Parent e3e288e792a9c471e17eec3afe05cec36f615bf2 (compute_char_face): Don't use NULL. diff -r e3e288e792a9 -r 8ab99c3646a7 src/xfaces.c --- a/src/xfaces.c Thu Apr 13 16:55:10 1995 +0000 +++ b/src/xfaces.c Thu Apr 13 16:56:05 1995 +0000 @@ -867,7 +867,8 @@ len = 40; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); - noverlays = overlays_at (pos, 0, &overlay_vec, &len, &next_overlay, NULL); + noverlays = overlays_at (pos, 0, &overlay_vec, &len, + &next_overlay, (int *) 0); /* If there are more than 40, make enough space for all, and try again. */ @@ -876,7 +877,7 @@ len = noverlays; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); noverlays = overlays_at (pos, 0, &overlay_vec, &len, - &next_overlay, NULL); + &next_overlay, (int *) 0); } if (next_overlay < endpos)