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:
parent
df20cbe075
commit
c4dd5a73ce
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, y;
|
||||
int geometry, x = 0, y = 0;
|
||||
unsigned int width, height;
|
||||
Lisp_Object result;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue