From 6cd567878443dd5fb9c3910de3a8e67acb5962b4 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 23 Aug 2019 11:17:38 -0700 Subject: [PATCH] Clarify compiler-pacifier in frame.c * src/frame.c (Fx_parse_geometry): Pacify the compiler in a different way, so that the human reader can more easily see that the initializations are unnecessary. --- src/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame.c b/src/frame.c index 8ee8e4203fc..330f98aee15 100644 --- a/src/frame.c +++ b/src/frame.c @@ -5327,7 +5327,7 @@ or a list (- N) meaning -N pixels relative to bottom/right corner. On Nextstep, this just calls `ns-parse-geometry'. */) (Lisp_Object string) { - int geometry, x = 0, y = 0; + int geometry, x UNINIT, y UNINIT; unsigned int width, height; Lisp_Object result; -- 2.39.2