1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-06 14:02:07 -08:00

Avoid compilation warning in frame.c

* src/frame.c (Fx_parse_geometry): Avoid compilation warning
about x and y being used without initializing them.
This commit is contained in:
Eli Zaretskii 2019-08-23 15:52:33 +03:00
parent df20cbe075
commit c4dd5a73ce

View file

@ -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, y;
int geometry, x = 0, y = 0;
unsigned int width, height;
Lisp_Object result;