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.
This commit is contained in:
parent
ad9c8b029c
commit
6cd5678784
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue