; Improve a recent change.

* src/frame.c (Fx_parse_geometry): Improve the comment about
non-initialization of some locals.
This commit is contained in:
Eli Zaretskii 2019-08-25 10:10:01 +03:00
parent 9b10ec0660
commit 26703b98f9

View file

@ -5328,7 +5328,8 @@ On Nextstep, this just calls `ns-parse-geometry'. */)
(Lisp_Object string)
{
/* x and y don't need initialization, as they are not accessed
unless XParseGeometry sets them. */
unless XParseGeometry sets them, in which case it always returns
a non-zero value. */
int x UNINIT, y UNINIT;
unsigned int width, height;